diff --git a/grammar.js b/grammar.js index 7cdde6ed..24415f15 100644 --- a/grammar.js +++ b/grammar.js @@ -53,6 +53,7 @@ module.exports = grammar({ [$._top_level_item, $._top_level_statement], [$.type_specifier, $._top_level_expression_statement], [$.type_qualifier, $.extension_expression], + [$.auto_type, $.storage_class_specifier], ], extras: $ => [ @@ -100,6 +101,8 @@ module.exports = grammar({ $.preproc_def, $.preproc_function_def, $.preproc_call, + $.preproc_errwarn, + $.preproc_embed, ), _block_item: $ => choice( @@ -117,6 +120,8 @@ module.exports = grammar({ $.preproc_def, $.preproc_function_def, $.preproc_call, + $.preproc_errwarn, + $.preproc_embed, ), // Preprocesser @@ -157,6 +162,23 @@ module.exports = grammar({ token.immediate(/\r?\n/), ), + preproc_errwarn: $ => seq( + choice(preprocessor('error'), preprocessor('warning')), + field('message', optional(token.immediate(/[^\r\n]*/))), + token.immediate(/\r?\n/), + ), + + preproc_embed: $ => seq( + preprocessor('embed'), + field('path', choice( + $.string_literal, + $.system_lib_string, + $.identifier, + alias($.preproc_call_expression, $.call_expression), + )), + token.immediate(/\r?\n/), + ), + ...preprocIf('', $ => $._block_item), ...preprocIf('_in_field_declaration_list', $ => $._field_declaration_list_item), ...preprocIf('_in_enumerator_list', $ => seq($.enumerator, ',')), @@ -593,10 +615,13 @@ module.exports = grammar({ $.enum_specifier, $.macro_type_specifier, $.sized_type_specifier, + $.auto_type, $.primitive_type, $._type_identifier, ), + auto_type: _ => 'auto', + sized_type_specifier: $ => choice( seq( repeat(choice( @@ -637,25 +662,32 @@ module.exports = grammar({ ), ), - primitive_type: _ => token(choice( - 'bool', - 'char', - 'int', - 'float', - 'double', - 'void', - 'size_t', - 'ssize_t', - 'ptrdiff_t', - 'intptr_t', - 'uintptr_t', - 'charptr_t', - 'nullptr_t', - 'max_align_t', - ...[8, 16, 32, 64].map(n => `int${n}_t`), - ...[8, 16, 32, 64].map(n => `uint${n}_t`), - ...[8, 16, 32, 64].map(n => `char${n}_t`), - )), + primitive_type: $ => choice( + token(choice( + 'bool', + 'char', + 'int', + 'float', + 'double', + 'void', + 'size_t', + 'ssize_t', + 'ptrdiff_t', + 'intptr_t', + 'uintptr_t', + 'charptr_t', + 'nullptr_t', + 'max_align_t', + ...[8, 16, 32, 64].map(n => `int${n}_t`), + ...[8, 16, 32, 64].map(n => `uint${n}_t`), + ...[8, 16, 32, 64].map(n => `char${n}_t`), + seq('_Float', /\d+/), + seq('_Float', /\d+/, 'x'), + seq('_Decimal', /\d+/), + seq('_Decimal', /\d+/, 'x'), + )), + seq('_BitInt', '(', $.number_literal, ')'), + ), enum_specifier: $ => seq( 'enum', @@ -956,6 +988,8 @@ module.exports = grammar({ $.cast_expression, $.pointer_expression, $.sizeof_expression, + $.static_assert_expression, + $.typeof_expression, $.alignof_expression, $.offsetof_expression, $.generic_expression, @@ -1104,6 +1138,21 @@ module.exports = grammar({ seq('(', field('type', $.type_descriptor), ',', field('member', $._field_identifier), ')'), )), + static_assert_expression: $ => prec(PREC.SIZEOF, seq( + choice('static_assert', '_Static_assert'), + '(', + field('condition', $.expression), + optional(seq(',', field('message', $.string_literal))), + ')' + )), + + typeof_expression: $ => prec(PREC.SIZEOF, seq( + choice('typeof', 'typeof_unqual'), + '(', + choice(field('type', $.type_descriptor), field('value', $.expression)), + ')', + )), + generic_expression: $ => prec(PREC.CALL, seq( '_Generic', '(', @@ -1353,7 +1402,8 @@ module.exports = grammar({ macro_type_specifier: $ => prec.dynamic(-1, seq( field('name', $.identifier), '(', - field('type', $.type_descriptor), + commaSep1($.type_descriptor), + optional(','), ')', )), diff --git a/queries/highlights.scm b/queries/highlights.scm index 8ee11890..d21c0dec 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -17,6 +17,11 @@ "inline" @keyword "return" @keyword "sizeof" @keyword +"typeof" @keyword +"static_assert" @keyword +"_Static_assert" @keyword +"alignof" @keyword +"alignas" @keyword "static" @keyword "struct" @keyword "switch" @keyword @@ -32,6 +37,11 @@ "#if" @keyword "#ifdef" @keyword "#ifndef" @keyword +"#elifdef" @keyword +"#elifndef" @keyword +"#embed" @keyword +"#warning" @keyword +"#error" @keyword "#include" @keyword (preproc_directive) @keyword diff --git a/src/grammar.json b/src/grammar.json index a3bd880e..91d4349a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -73,6 +73,14 @@ { "type": "SYMBOL", "name": "preproc_call" + }, + { + "type": "SYMBOL", + "name": "preproc_errwarn" + }, + { + "type": "SYMBOL", + "name": "preproc_embed" } ] }, @@ -139,6 +147,14 @@ { "type": "SYMBOL", "name": "preproc_call" + }, + { + "type": "SYMBOL", + "name": "preproc_errwarn" + }, + { + "type": "SYMBOL", + "name": "preproc_embed" } ] }, @@ -394,6 +410,111 @@ } ] }, + "preproc_errwarn": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*error" + }, + "named": false, + "value": "#error" + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*warning" + }, + "named": false, + "value": "#warning" + } + ] + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\r\\n]*" + } + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, + "preproc_embed": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*embed" + }, + "named": false, + "value": "#embed" + }, + { + "type": "FIELD", + "name": "path", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "system_lib_string" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "\\r?\\n" + } + } + ] + }, "preproc_if": { "type": "PREC", "value": 0, @@ -4748,6 +4869,10 @@ "type": "SYMBOL", "name": "sized_type_specifier" }, + { + "type": "SYMBOL", + "name": "auto_type" + }, { "type": "SYMBOL", "name": "primitive_type" @@ -4758,6 +4883,10 @@ } ] }, + "auto_type": { + "type": "STRING", + "value": "auto" + }, "sized_type_specifier": { "type": "CHOICE", "members": [ @@ -4935,116 +5064,202 @@ ] }, "primitive_type": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "bool" - }, - { - "type": "STRING", - "value": "char" - }, - { - "type": "STRING", - "value": "int" - }, - { - "type": "STRING", - "value": "float" - }, - { - "type": "STRING", - "value": "double" - }, - { - "type": "STRING", - "value": "void" - }, - { - "type": "STRING", - "value": "size_t" - }, - { - "type": "STRING", - "value": "ssize_t" - }, - { - "type": "STRING", - "value": "ptrdiff_t" - }, - { - "type": "STRING", - "value": "intptr_t" - }, - { - "type": "STRING", - "value": "uintptr_t" - }, - { - "type": "STRING", - "value": "charptr_t" - }, - { - "type": "STRING", - "value": "nullptr_t" - }, - { - "type": "STRING", - "value": "max_align_t" - }, - { - "type": "STRING", - "value": "int8_t" - }, - { - "type": "STRING", - "value": "int16_t" - }, - { - "type": "STRING", - "value": "int32_t" - }, - { - "type": "STRING", - "value": "int64_t" - }, - { - "type": "STRING", - "value": "uint8_t" - }, - { - "type": "STRING", - "value": "uint16_t" - }, - { - "type": "STRING", - "value": "uint32_t" - }, - { - "type": "STRING", - "value": "uint64_t" - }, - { - "type": "STRING", - "value": "char8_t" - }, - { - "type": "STRING", - "value": "char16_t" - }, - { - "type": "STRING", - "value": "char32_t" - }, - { - "type": "STRING", - "value": "char64_t" + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "bool" + }, + { + "type": "STRING", + "value": "char" + }, + { + "type": "STRING", + "value": "int" + }, + { + "type": "STRING", + "value": "float" + }, + { + "type": "STRING", + "value": "double" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "size_t" + }, + { + "type": "STRING", + "value": "ssize_t" + }, + { + "type": "STRING", + "value": "ptrdiff_t" + }, + { + "type": "STRING", + "value": "intptr_t" + }, + { + "type": "STRING", + "value": "uintptr_t" + }, + { + "type": "STRING", + "value": "charptr_t" + }, + { + "type": "STRING", + "value": "nullptr_t" + }, + { + "type": "STRING", + "value": "max_align_t" + }, + { + "type": "STRING", + "value": "int8_t" + }, + { + "type": "STRING", + "value": "int16_t" + }, + { + "type": "STRING", + "value": "int32_t" + }, + { + "type": "STRING", + "value": "int64_t" + }, + { + "type": "STRING", + "value": "uint8_t" + }, + { + "type": "STRING", + "value": "uint16_t" + }, + { + "type": "STRING", + "value": "uint32_t" + }, + { + "type": "STRING", + "value": "uint64_t" + }, + { + "type": "STRING", + "value": "char8_t" + }, + { + "type": "STRING", + "value": "char16_t" + }, + { + "type": "STRING", + "value": "char32_t" + }, + { + "type": "STRING", + "value": "char64_t" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_Float" + }, + { + "type": "PATTERN", + "value": "\\d+" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_Float" + }, + { + "type": "PATTERN", + "value": "\\d+" + }, + { + "type": "STRING", + "value": "x" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_Decimal" + }, + { + "type": "PATTERN", + "value": "\\d+" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_Decimal" + }, + { + "type": "PATTERN", + "value": "\\d+" + }, + { + "type": "STRING", + "value": "x" + } + ] + } + ] } - ] - } + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_BitInt" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "number_literal" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] }, "enum_specifier": { "type": "SEQ", @@ -6595,6 +6810,14 @@ "type": "SYMBOL", "name": "sizeof_expression" }, + { + "type": "SYMBOL", + "name": "static_assert_expression" + }, + { + "type": "SYMBOL", + "name": "typeof_expression" + }, { "type": "SYMBOL", "name": "alignof_expression" @@ -7849,6 +8072,120 @@ ] } }, + "static_assert_expression": { + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static_assert" + }, + { + "type": "STRING", + "value": "_Static_assert" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "message", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "typeof_expression": { + "type": "PREC", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "STRING", + "value": "typeof_unqual" + } + ] + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type_descriptor" + } + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, "generic_expression": { "type": "PREC", "value": 15, @@ -9581,12 +9918,41 @@ "value": "(" }, { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "type_descriptor" - } + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_descriptor" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "type_descriptor" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -9711,6 +10077,10 @@ [ "type_qualifier", "extension_expression" + ], + [ + "auto_type", + "storage_class_specifier" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 6106fcc3..6af29a94 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -203,6 +203,10 @@ "type": "sizeof_expression", "named": true }, + { + "type": "static_assert_expression", + "named": true + }, { "type": "string_literal", "named": true @@ -215,6 +219,10 @@ "type": "true", "named": true }, + { + "type": "typeof_expression", + "named": true + }, { "type": "unary_expression", "named": true @@ -299,6 +307,10 @@ "type": "type_specifier", "named": true, "subtypes": [ + { + "type": "auto_type", + "named": true + }, { "type": "enum_specifier", "named": true @@ -758,6 +770,11 @@ ] } }, + { + "type": "auto_type", + "named": true, + "fields": {} + }, { "type": "binary_expression", "named": true, @@ -1135,6 +1152,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -1342,6 +1367,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -2339,17 +2372,17 @@ "named": true } ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_descriptor", - "named": true - } - ] } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] } }, { @@ -2819,6 +2852,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -2915,6 +2956,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -2982,6 +3031,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -3013,6 +3070,39 @@ ] } }, + { + "type": "preproc_embed", + "named": true, + "fields": { + "path": { + "multiple": false, + "required": true, + "types": [ + { + "type": "call_expression", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "string_literal", + "named": true + }, + { + "type": "system_lib_string", + "named": true + } + ] + } + } + }, + { + "type": "preproc_errwarn", + "named": true, + "fields": {} + }, { "type": "preproc_function_def", "named": true, @@ -3142,6 +3232,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -3238,6 +3336,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -3312,6 +3418,21 @@ ] } }, + { + "type": "primitive_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "number_literal", + "named": true + } + ] + } + }, { "type": "return_statement", "named": true, @@ -3464,6 +3585,32 @@ } } }, + { + "type": "static_assert_expression", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "message": { + "multiple": false, + "required": false, + "types": [ + { + "type": "string_literal", + "named": true + } + ] + } + } + }, { "type": "storage_class_specifier", "named": true, @@ -3694,6 +3841,14 @@ "type": "preproc_def", "named": true }, + { + "type": "preproc_embed", + "named": true + }, + { + "type": "preproc_errwarn", + "named": true + }, { "type": "preproc_function_def", "named": true @@ -3824,6 +3979,32 @@ ] } }, + { + "type": "typeof_expression", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_descriptor", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "unary_expression", "named": true, @@ -4003,10 +4184,18 @@ "type": "#else", "named": false }, + { + "type": "#embed", + "named": false + }, { "type": "#endif", "named": false }, + { + "type": "#error", + "named": false + }, { "type": "#if", "named": false @@ -4023,6 +4212,10 @@ "type": "#include", "named": false }, + { + "type": "#warning", + "named": false + }, { "type": "%", "named": false @@ -4223,6 +4416,10 @@ "type": "_Atomic", "named": false }, + { + "type": "_BitInt", + "named": false + }, { "type": "_Generic", "named": false @@ -4235,6 +4432,10 @@ "type": "_Noreturn", "named": false }, + { + "type": "_Static_assert", + "named": false + }, { "type": "__alignof", "named": false @@ -4488,10 +4689,6 @@ "type": "preproc_directive", "named": true }, - { - "type": "primitive_type", - "named": true - }, { "type": "register", "named": false @@ -4524,6 +4721,10 @@ "type": "static", "named": false }, + { + "type": "static_assert", + "named": false + }, { "type": "string_content", "named": true @@ -4556,6 +4757,14 @@ "type": "typedef", "named": false }, + { + "type": "typeof", + "named": false + }, + { + "type": "typeof_unqual", + "named": false + }, { "type": "u\"", "named": false diff --git a/src/parser.c b/src/parser.c index f341b2e4..0efafd58 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.4 (726dcd1e872149d95de581589fc408fb8ea9cb0b) */ +/* Automatically @generated by tree-sitter */ #include "tree_sitter/parser.h" @@ -15,16 +15,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2015 -#define LARGE_STATE_COUNT 455 -#define SYMBOL_COUNT 360 +#define STATE_COUNT 2075 +#define LARGE_STATE_COUNT 633 +#define SYMBOL_COUNT 376 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 161 +#define TOKEN_COUNT 170 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 39 +#define FIELD_COUNT 40 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 131 +#define PRODUCTION_ID_COUNT 134 #define SUPERTYPE_COUNT 7 enum ts_symbol_identifiers { @@ -36,360 +36,376 @@ enum ts_symbol_identifiers { 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, + aux_sym_preproc_errwarn_token1 = 9, + aux_sym_preproc_errwarn_token2 = 10, + aux_sym_preproc_errwarn_token3 = 11, + aux_sym_preproc_embed_token1 = 12, + aux_sym_preproc_if_token1 = 13, + anon_sym_LF = 14, + aux_sym_preproc_if_token2 = 15, + aux_sym_preproc_ifdef_token1 = 16, + aux_sym_preproc_ifdef_token2 = 17, + aux_sym_preproc_else_token1 = 18, + aux_sym_preproc_elif_token1 = 19, + aux_sym_preproc_elifdef_token1 = 20, + aux_sym_preproc_elifdef_token2 = 21, + sym_preproc_arg = 22, + sym_preproc_directive = 23, + anon_sym_LPAREN2 = 24, + anon_sym_defined = 25, + anon_sym_BANG = 26, + anon_sym_TILDE = 27, + anon_sym_DASH = 28, + anon_sym_PLUS = 29, + anon_sym_STAR = 30, + anon_sym_SLASH = 31, + anon_sym_PERCENT = 32, + anon_sym_PIPE_PIPE = 33, + anon_sym_AMP_AMP = 34, + anon_sym_PIPE = 35, + anon_sym_CARET = 36, + anon_sym_AMP = 37, + anon_sym_EQ_EQ = 38, + anon_sym_BANG_EQ = 39, + anon_sym_GT = 40, + anon_sym_GT_EQ = 41, + anon_sym_LT_EQ = 42, + anon_sym_LT = 43, + anon_sym_LT_LT = 44, + anon_sym_GT_GT = 45, + anon_sym_SEMI = 46, + anon_sym___extension__ = 47, + anon_sym_typedef = 48, + anon_sym_extern = 49, + anon_sym___attribute__ = 50, + anon_sym___attribute = 51, + anon_sym_COLON_COLON = 52, + anon_sym_LBRACK_LBRACK = 53, + anon_sym_RBRACK_RBRACK = 54, + anon_sym___declspec = 55, + anon_sym___based = 56, + anon_sym___cdecl = 57, + anon_sym___clrcall = 58, + anon_sym___stdcall = 59, + anon_sym___fastcall = 60, + anon_sym___thiscall = 61, + anon_sym___vectorcall = 62, + sym_ms_restrict_modifier = 63, + sym_ms_unsigned_ptr_modifier = 64, + sym_ms_signed_ptr_modifier = 65, + anon_sym__unaligned = 66, + anon_sym___unaligned = 67, + anon_sym_LBRACE = 68, + anon_sym_RBRACE = 69, + anon_sym_signed = 70, + anon_sym_unsigned = 71, + anon_sym_long = 72, + anon_sym_short = 73, + anon_sym_LBRACK = 74, + anon_sym_static = 75, + anon_sym_RBRACK = 76, + anon_sym_EQ = 77, + anon_sym_auto = 78, + anon_sym_register = 79, + anon_sym_inline = 80, + anon_sym___inline = 81, + anon_sym___inline__ = 82, + anon_sym___forceinline = 83, + anon_sym_thread_local = 84, + anon_sym___thread = 85, + anon_sym_const = 86, + anon_sym_constexpr = 87, + anon_sym_volatile = 88, + anon_sym_restrict = 89, + anon_sym___restrict__ = 90, + anon_sym__Atomic = 91, + anon_sym__Noreturn = 92, + anon_sym_noreturn = 93, + anon_sym__Nonnull = 94, + anon_sym_alignas = 95, + anon_sym__Alignas = 96, + aux_sym_primitive_type_token1 = 97, + anon_sym__BitInt = 98, + anon_sym_enum = 99, + anon_sym_COLON = 100, + anon_sym_struct = 101, + anon_sym_union = 102, + anon_sym_if = 103, + anon_sym_else = 104, + anon_sym_switch = 105, + anon_sym_case = 106, + anon_sym_default = 107, + anon_sym_while = 108, + anon_sym_do = 109, + anon_sym_for = 110, + anon_sym_return = 111, + anon_sym_break = 112, + anon_sym_continue = 113, + anon_sym_goto = 114, + anon_sym___try = 115, + anon_sym___except = 116, + anon_sym___finally = 117, + anon_sym___leave = 118, + anon_sym_QMARK = 119, + anon_sym_STAR_EQ = 120, + anon_sym_SLASH_EQ = 121, + anon_sym_PERCENT_EQ = 122, + anon_sym_PLUS_EQ = 123, + anon_sym_DASH_EQ = 124, + anon_sym_LT_LT_EQ = 125, + anon_sym_GT_GT_EQ = 126, + anon_sym_AMP_EQ = 127, + anon_sym_CARET_EQ = 128, + anon_sym_PIPE_EQ = 129, + anon_sym_DASH_DASH = 130, + anon_sym_PLUS_PLUS = 131, + anon_sym_sizeof = 132, + anon_sym___alignof__ = 133, + anon_sym___alignof = 134, + anon_sym__alignof = 135, + anon_sym_alignof = 136, + anon_sym__Alignof = 137, + anon_sym_offsetof = 138, + anon_sym_static_assert = 139, + anon_sym__Static_assert = 140, + anon_sym_typeof = 141, + anon_sym_typeof_unqual = 142, + anon_sym__Generic = 143, + anon_sym_asm = 144, + anon_sym___asm__ = 145, + anon_sym___asm = 146, + anon_sym___volatile__ = 147, + anon_sym_DOT = 148, + anon_sym_DASH_GT = 149, + sym_number_literal = 150, + anon_sym_L_SQUOTE = 151, + anon_sym_u_SQUOTE = 152, + anon_sym_U_SQUOTE = 153, + anon_sym_u8_SQUOTE = 154, + anon_sym_SQUOTE = 155, + aux_sym_char_literal_token1 = 156, + anon_sym_L_DQUOTE = 157, + anon_sym_u_DQUOTE = 158, + anon_sym_U_DQUOTE = 159, + anon_sym_u8_DQUOTE = 160, + anon_sym_DQUOTE = 161, + aux_sym_string_literal_token1 = 162, + sym_escape_sequence = 163, + sym_system_lib_string = 164, + sym_true = 165, + sym_false = 166, + anon_sym_NULL = 167, + anon_sym_nullptr = 168, + sym_comment = 169, + sym_translation_unit = 170, + sym__top_level_item = 171, + sym__block_item = 172, + sym_preproc_include = 173, + sym_preproc_def = 174, + sym_preproc_function_def = 175, + sym_preproc_params = 176, + sym_preproc_call = 177, + sym_preproc_errwarn = 178, + sym_preproc_embed = 179, + sym_preproc_if = 180, + sym_preproc_ifdef = 181, + sym_preproc_else = 182, + sym_preproc_elif = 183, + sym_preproc_elifdef = 184, + sym_preproc_if_in_field_declaration_list = 185, + sym_preproc_ifdef_in_field_declaration_list = 186, + sym_preproc_else_in_field_declaration_list = 187, + sym_preproc_elif_in_field_declaration_list = 188, + sym_preproc_elifdef_in_field_declaration_list = 189, + sym_preproc_if_in_enumerator_list = 190, + sym_preproc_ifdef_in_enumerator_list = 191, + sym_preproc_else_in_enumerator_list = 192, + sym_preproc_elif_in_enumerator_list = 193, + sym_preproc_elifdef_in_enumerator_list = 194, + sym_preproc_if_in_enumerator_list_no_comma = 195, + sym_preproc_ifdef_in_enumerator_list_no_comma = 196, + sym_preproc_else_in_enumerator_list_no_comma = 197, + sym_preproc_elif_in_enumerator_list_no_comma = 198, + sym_preproc_elifdef_in_enumerator_list_no_comma = 199, + sym__preproc_expression = 200, + sym_preproc_parenthesized_expression = 201, + sym_preproc_defined = 202, + sym_preproc_unary_expression = 203, + sym_preproc_call_expression = 204, + sym_preproc_argument_list = 205, + sym_preproc_binary_expression = 206, + sym_function_definition = 207, + sym__old_style_function_definition = 208, + sym_declaration = 209, + sym_type_definition = 210, + sym__type_definition_type = 211, + sym__type_definition_declarators = 212, + sym__declaration_modifiers = 213, + sym__declaration_specifiers = 214, + sym_linkage_specification = 215, + sym_attribute_specifier = 216, + sym_attribute = 217, + sym_attribute_declaration = 218, + sym_ms_declspec_modifier = 219, + sym_ms_based_modifier = 220, + sym_ms_call_modifier = 221, + sym_ms_unaligned_ptr_modifier = 222, + sym_ms_pointer_modifier = 223, + sym_declaration_list = 224, + sym__declarator = 225, + sym__declaration_declarator = 226, + sym__field_declarator = 227, + sym__type_declarator = 228, + sym__abstract_declarator = 229, + sym_parenthesized_declarator = 230, + sym_parenthesized_field_declarator = 231, + sym_parenthesized_type_declarator = 232, + sym_abstract_parenthesized_declarator = 233, + sym_attributed_declarator = 234, + sym_attributed_field_declarator = 235, + sym_attributed_type_declarator = 236, + sym_pointer_declarator = 237, + sym_pointer_field_declarator = 238, + sym_pointer_type_declarator = 239, + sym_abstract_pointer_declarator = 240, + sym_function_declarator = 241, + sym__function_declaration_declarator = 242, + sym_function_field_declarator = 243, + sym_function_type_declarator = 244, + sym_abstract_function_declarator = 245, + sym__old_style_function_declarator = 246, + sym_array_declarator = 247, + sym_array_field_declarator = 248, + sym_array_type_declarator = 249, + sym_abstract_array_declarator = 250, + sym_init_declarator = 251, + sym_compound_statement = 252, + sym_storage_class_specifier = 253, + sym_type_qualifier = 254, + sym_alignas_qualifier = 255, + sym_type_specifier = 256, + sym_auto_type = 257, + sym_sized_type_specifier = 258, + sym_primitive_type = 259, + sym_enum_specifier = 260, + sym_enumerator_list = 261, + sym_struct_specifier = 262, + sym_union_specifier = 263, + sym_field_declaration_list = 264, + sym__field_declaration_list_item = 265, + sym_field_declaration = 266, + sym__field_declaration_declarator = 267, + sym_bitfield_clause = 268, + sym_enumerator = 269, + sym_variadic_parameter = 270, + sym_parameter_list = 271, + sym__old_style_parameter_list = 272, + sym_parameter_declaration = 273, + sym_attributed_statement = 274, + sym_statement = 275, + sym__top_level_statement = 276, + sym_labeled_statement = 277, + sym__top_level_expression_statement = 278, + sym_expression_statement = 279, + sym_if_statement = 280, + sym_else_clause = 281, + sym_switch_statement = 282, + sym_case_statement = 283, + sym_while_statement = 284, + sym_do_statement = 285, + sym_for_statement = 286, + sym__for_statement_body = 287, + sym_return_statement = 288, + sym_break_statement = 289, + sym_continue_statement = 290, + sym_goto_statement = 291, + sym_seh_try_statement = 292, + sym_seh_except_clause = 293, + sym_seh_finally_clause = 294, + sym_seh_leave_statement = 295, + sym_expression = 296, + sym__string = 297, + sym_comma_expression = 298, + sym_conditional_expression = 299, + sym_assignment_expression = 300, + sym_pointer_expression = 301, + sym_unary_expression = 302, + sym_binary_expression = 303, + sym_update_expression = 304, + sym_cast_expression = 305, + sym_type_descriptor = 306, + sym_sizeof_expression = 307, + sym_alignof_expression = 308, + sym_offsetof_expression = 309, + sym_static_assert_expression = 310, + sym_typeof_expression = 311, + sym_generic_expression = 312, + sym_subscript_expression = 313, + sym_call_expression = 314, + sym_gnu_asm_expression = 315, + sym_gnu_asm_qualifier = 316, + sym_gnu_asm_output_operand_list = 317, + sym_gnu_asm_output_operand = 318, + sym_gnu_asm_input_operand_list = 319, + sym_gnu_asm_input_operand = 320, + sym_gnu_asm_clobber_list = 321, + sym_gnu_asm_goto_list = 322, + sym_extension_expression = 323, + sym_argument_list = 324, + sym_field_expression = 325, + sym_compound_literal_expression = 326, + sym_parenthesized_expression = 327, + sym_initializer_list = 328, + sym_initializer_pair = 329, + sym_subscript_designator = 330, + sym_subscript_range_designator = 331, + sym_field_designator = 332, + sym_char_literal = 333, + sym_concatenated_string = 334, + sym_string_literal = 335, + sym_null = 336, + sym__empty_declaration = 337, + sym_macro_type_specifier = 338, + aux_sym_translation_unit_repeat1 = 339, + aux_sym_preproc_params_repeat1 = 340, + aux_sym_preproc_if_repeat1 = 341, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 342, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 343, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 344, + aux_sym_preproc_argument_list_repeat1 = 345, + aux_sym__old_style_function_definition_repeat1 = 346, + aux_sym_declaration_repeat1 = 347, + aux_sym_type_definition_repeat1 = 348, + aux_sym__type_definition_type_repeat1 = 349, + aux_sym__type_definition_declarators_repeat1 = 350, + aux_sym__declaration_specifiers_repeat1 = 351, + aux_sym_attribute_declaration_repeat1 = 352, + aux_sym_attributed_declarator_repeat1 = 353, + aux_sym_pointer_declarator_repeat1 = 354, + aux_sym_function_declarator_repeat1 = 355, + aux_sym_array_declarator_repeat1 = 356, + aux_sym_sized_type_specifier_repeat1 = 357, + aux_sym_enumerator_list_repeat1 = 358, + aux_sym__field_declaration_declarator_repeat1 = 359, + aux_sym_parameter_list_repeat1 = 360, + aux_sym__old_style_parameter_list_repeat1 = 361, + aux_sym_case_statement_repeat1 = 362, + aux_sym_generic_expression_repeat1 = 363, + aux_sym_gnu_asm_expression_repeat1 = 364, + aux_sym_gnu_asm_output_operand_list_repeat1 = 365, + aux_sym_gnu_asm_input_operand_list_repeat1 = 366, + aux_sym_gnu_asm_clobber_list_repeat1 = 367, + aux_sym_gnu_asm_goto_list_repeat1 = 368, + aux_sym_argument_list_repeat1 = 369, + aux_sym_initializer_list_repeat1 = 370, + aux_sym_initializer_pair_repeat1 = 371, + aux_sym_char_literal_repeat1 = 372, + aux_sym_concatenated_string_repeat1 = 373, + aux_sym_string_literal_repeat1 = 374, + aux_sym_macro_type_specifier_repeat1 = 375, + alias_sym_field_identifier = 376, + alias_sym_statement_identifier = 377, + alias_sym_type_identifier = 378, }; static const char * const ts_symbol_names[] = { @@ -402,6 +418,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_COMMA] = ",", [anon_sym_RPAREN] = ")", + [aux_sym_preproc_errwarn_token1] = "#error", + [aux_sym_preproc_errwarn_token2] = "#warning", + [aux_sym_preproc_errwarn_token3] = "preproc_errwarn_token3", + [aux_sym_preproc_embed_token1] = "#embed", [aux_sym_preproc_if_token1] = "#if", [anon_sym_LF] = "\n", [aux_sym_preproc_if_token2] = "#endif", @@ -486,7 +506,8 @@ static const char * const ts_symbol_names[] = { [anon_sym__Nonnull] = "_Nonnull", [anon_sym_alignas] = "alignas", [anon_sym__Alignas] = "_Alignas", - [sym_primitive_type] = "primitive_type", + [aux_sym_primitive_type_token1] = "primitive_type_token1", + [anon_sym__BitInt] = "_BitInt", [anon_sym_enum] = "enum", [anon_sym_COLON] = ":", [anon_sym_struct] = "struct", @@ -527,6 +548,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_alignof] = "alignof", [anon_sym__Alignof] = "_Alignof", [anon_sym_offsetof] = "offsetof", + [anon_sym_static_assert] = "static_assert", + [anon_sym__Static_assert] = "_Static_assert", + [anon_sym_typeof] = "typeof", + [anon_sym_typeof_unqual] = "typeof_unqual", [anon_sym__Generic] = "_Generic", [anon_sym_asm] = "asm", [anon_sym___asm__] = "__asm__", @@ -562,6 +587,8 @@ static const char * const ts_symbol_names[] = { [sym_preproc_function_def] = "preproc_function_def", [sym_preproc_params] = "preproc_params", [sym_preproc_call] = "preproc_call", + [sym_preproc_errwarn] = "preproc_errwarn", + [sym_preproc_embed] = "preproc_embed", [sym_preproc_if] = "preproc_if", [sym_preproc_ifdef] = "preproc_ifdef", [sym_preproc_else] = "preproc_else", @@ -639,7 +666,9 @@ static const char * const ts_symbol_names[] = { [sym_type_qualifier] = "type_qualifier", [sym_alignas_qualifier] = "alignas_qualifier", [sym_type_specifier] = "type_specifier", + [sym_auto_type] = "auto_type", [sym_sized_type_specifier] = "sized_type_specifier", + [sym_primitive_type] = "primitive_type", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", [sym_struct_specifier] = "struct_specifier", @@ -690,6 +719,8 @@ static const char * const ts_symbol_names[] = { [sym_sizeof_expression] = "sizeof_expression", [sym_alignof_expression] = "alignof_expression", [sym_offsetof_expression] = "offsetof_expression", + [sym_static_assert_expression] = "static_assert_expression", + [sym_typeof_expression] = "typeof_expression", [sym_generic_expression] = "generic_expression", [sym_subscript_expression] = "subscript_expression", [sym_call_expression] = "call_expression", @@ -753,6 +784,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_char_literal_repeat1] = "char_literal_repeat1", [aux_sym_concatenated_string_repeat1] = "concatenated_string_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym_macro_type_specifier_repeat1] = "macro_type_specifier_repeat1", [alias_sym_field_identifier] = "field_identifier", [alias_sym_statement_identifier] = "statement_identifier", [alias_sym_type_identifier] = "type_identifier", @@ -768,6 +800,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_RPAREN] = anon_sym_RPAREN, + [aux_sym_preproc_errwarn_token1] = aux_sym_preproc_errwarn_token1, + [aux_sym_preproc_errwarn_token2] = aux_sym_preproc_errwarn_token2, + [aux_sym_preproc_errwarn_token3] = aux_sym_preproc_errwarn_token3, + [aux_sym_preproc_embed_token1] = aux_sym_preproc_embed_token1, [aux_sym_preproc_if_token1] = aux_sym_preproc_if_token1, [anon_sym_LF] = anon_sym_LF, [aux_sym_preproc_if_token2] = aux_sym_preproc_if_token2, @@ -852,7 +888,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym__Nonnull] = anon_sym__Nonnull, [anon_sym_alignas] = anon_sym_alignas, [anon_sym__Alignas] = anon_sym__Alignas, - [sym_primitive_type] = sym_primitive_type, + [aux_sym_primitive_type_token1] = aux_sym_primitive_type_token1, + [anon_sym__BitInt] = anon_sym__BitInt, [anon_sym_enum] = anon_sym_enum, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_struct] = anon_sym_struct, @@ -893,6 +930,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_alignof] = anon_sym_alignof, [anon_sym__Alignof] = anon_sym__Alignof, [anon_sym_offsetof] = anon_sym_offsetof, + [anon_sym_static_assert] = anon_sym_static_assert, + [anon_sym__Static_assert] = anon_sym__Static_assert, + [anon_sym_typeof] = anon_sym_typeof, + [anon_sym_typeof_unqual] = anon_sym_typeof_unqual, [anon_sym__Generic] = anon_sym__Generic, [anon_sym_asm] = anon_sym_asm, [anon_sym___asm__] = anon_sym___asm__, @@ -928,6 +969,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_function_def] = sym_preproc_function_def, [sym_preproc_params] = sym_preproc_params, [sym_preproc_call] = sym_preproc_call, + [sym_preproc_errwarn] = sym_preproc_errwarn, + [sym_preproc_embed] = sym_preproc_embed, [sym_preproc_if] = sym_preproc_if, [sym_preproc_ifdef] = sym_preproc_ifdef, [sym_preproc_else] = sym_preproc_else, @@ -1005,7 +1048,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_type_qualifier] = sym_type_qualifier, [sym_alignas_qualifier] = sym_alignas_qualifier, [sym_type_specifier] = sym_type_specifier, + [sym_auto_type] = sym_auto_type, [sym_sized_type_specifier] = sym_sized_type_specifier, + [sym_primitive_type] = sym_primitive_type, [sym_enum_specifier] = sym_enum_specifier, [sym_enumerator_list] = sym_enumerator_list, [sym_struct_specifier] = sym_struct_specifier, @@ -1056,6 +1101,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_sizeof_expression] = sym_sizeof_expression, [sym_alignof_expression] = sym_alignof_expression, [sym_offsetof_expression] = sym_offsetof_expression, + [sym_static_assert_expression] = sym_static_assert_expression, + [sym_typeof_expression] = sym_typeof_expression, [sym_generic_expression] = sym_generic_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_call_expression] = sym_call_expression, @@ -1119,6 +1166,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_char_literal_repeat1] = aux_sym_char_literal_repeat1, [aux_sym_concatenated_string_repeat1] = aux_sym_concatenated_string_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym_macro_type_specifier_repeat1] = aux_sym_macro_type_specifier_repeat1, [alias_sym_field_identifier] = alias_sym_field_identifier, [alias_sym_statement_identifier] = alias_sym_statement_identifier, [alias_sym_type_identifier] = alias_sym_type_identifier, @@ -1161,6 +1209,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_preproc_errwarn_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_errwarn_token2] = { + .visible = true, + .named = false, + }, + [aux_sym_preproc_errwarn_token3] = { + .visible = false, + .named = false, + }, + [aux_sym_preproc_embed_token1] = { + .visible = true, + .named = false, + }, [aux_sym_preproc_if_token1] = { .visible = true, .named = false, @@ -1497,9 +1561,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_primitive_type] = { + [aux_sym_primitive_type_token1] = { + .visible = false, + .named = false, + }, + [anon_sym__BitInt] = { .visible = true, - .named = true, + .named = false, }, [anon_sym_enum] = { .visible = true, @@ -1661,6 +1729,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_static_assert] = { + .visible = true, + .named = false, + }, + [anon_sym__Static_assert] = { + .visible = true, + .named = false, + }, + [anon_sym_typeof] = { + .visible = true, + .named = false, + }, + [anon_sym_typeof_unqual] = { + .visible = true, + .named = false, + }, [anon_sym__Generic] = { .visible = true, .named = false, @@ -1801,6 +1885,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_errwarn] = { + .visible = true, + .named = true, + }, + [sym_preproc_embed] = { + .visible = true, + .named = true, + }, [sym_preproc_if] = { .visible = true, .named = true, @@ -2114,10 +2206,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym_auto_type] = { + .visible = true, + .named = true, + }, [sym_sized_type_specifier] = { .visible = true, .named = true, }, + [sym_primitive_type] = { + .visible = true, + .named = true, + }, [sym_enum_specifier] = { .visible = true, .named = true, @@ -2320,6 +2420,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_static_assert_expression] = { + .visible = true, + .named = true, + }, + [sym_typeof_expression] = { + .visible = true, + .named = true, + }, [sym_generic_expression] = { .visible = true, .named = true, @@ -2572,6 +2680,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_macro_type_specifier_repeat1] = { + .visible = false, + .named = false, + }, [alias_sym_field_identifier] = { .visible = true, .named = true, @@ -2610,22 +2722,23 @@ enum ts_field_identifiers { field_label = 21, field_left = 22, field_member = 23, - field_name = 24, - field_operand = 25, - field_operator = 26, - field_output_operands = 27, - field_parameters = 28, - field_path = 29, - field_prefix = 30, - field_register = 31, - field_right = 32, - field_size = 33, - field_start = 34, - field_symbol = 35, - field_type = 36, - field_underlying_type = 37, - field_update = 38, - field_value = 39, + field_message = 24, + field_name = 25, + field_operand = 26, + field_operator = 27, + field_output_operands = 28, + field_parameters = 29, + field_path = 30, + field_prefix = 31, + field_register = 32, + field_right = 33, + field_size = 34, + field_start = 35, + field_symbol = 36, + field_type = 37, + field_underlying_type = 38, + field_update = 39, + field_value = 40, }; static const char * const ts_field_names[] = { @@ -2653,6 +2766,7 @@ static const char * const ts_field_names[] = { [field_label] = "label", [field_left] = "left", [field_member] = "member", + [field_message] = "message", [field_name] = "name", [field_operand] = "operand", [field_operator] = "operator", @@ -2688,116 +2802,119 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [15] = {.index = 17, .length = 1}, [16] = {.index = 18, .length = 1}, [17] = {.index = 8, .length = 1}, - [18] = {.index = 19, .length = 2}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 1}, - [22] = {.index = 24, .length = 1}, - [23] = {.index = 25, .length = 2}, - [24] = {.index = 27, .length = 2}, - [25] = {.index = 29, .length = 1}, + [18] = {.index = 19, .length = 1}, + [19] = {.index = 20, .length = 2}, + [20] = {.index = 22, .length = 2}, + [21] = {.index = 24, .length = 1}, + [23] = {.index = 25, .length = 1}, + [24] = {.index = 26, .length = 2}, + [25] = {.index = 28, .length = 2}, [26] = {.index = 30, .length = 1}, - [27] = {.index = 31, .length = 2}, - [28] = {.index = 33, .length = 2}, - [29] = {.index = 35, .length = 1}, - [30] = {.index = 36, .length = 3}, - [31] = {.index = 39, .length = 1}, + [27] = {.index = 31, .length = 1}, + [28] = {.index = 32, .length = 2}, + [29] = {.index = 34, .length = 2}, + [30] = {.index = 36, .length = 1}, + [31] = {.index = 37, .length = 3}, [32] = {.index = 40, .length = 1}, - [33] = {.index = 41, .length = 3}, - [34] = {.index = 44, .length = 2}, - [35] = {.index = 46, .length = 2}, - [36] = {.index = 48, .length = 3}, - [37] = {.index = 51, .length = 1}, - [38] = {.index = 51, .length = 1}, - [39] = {.index = 52, .length = 2}, - [40] = {.index = 54, .length = 2}, - [41] = {.index = 56, .length = 1}, - [42] = {.index = 57, .length = 2}, - [43] = {.index = 59, .length = 1}, - [44] = {.index = 60, .length = 2}, - [45] = {.index = 62, .length = 2}, - [46] = {.index = 64, .length = 2}, - [47] = {.index = 66, .length = 2}, - [48] = {.index = 68, .length = 2}, - [49] = {.index = 70, .length = 2}, - [50] = {.index = 72, .length = 2}, - [51] = {.index = 74, .length = 2}, - [53] = {.index = 76, .length = 2}, - [54] = {.index = 78, .length = 1}, + [33] = {.index = 41, .length = 1}, + [34] = {.index = 42, .length = 3}, + [35] = {.index = 45, .length = 2}, + [36] = {.index = 47, .length = 2}, + [37] = {.index = 49, .length = 3}, + [38] = {.index = 52, .length = 1}, + [39] = {.index = 52, .length = 1}, + [40] = {.index = 53, .length = 2}, + [41] = {.index = 55, .length = 2}, + [42] = {.index = 57, .length = 1}, + [43] = {.index = 58, .length = 2}, + [44] = {.index = 60, .length = 1}, + [45] = {.index = 61, .length = 2}, + [46] = {.index = 63, .length = 2}, + [47] = {.index = 65, .length = 2}, + [48] = {.index = 67, .length = 2}, + [49] = {.index = 69, .length = 2}, + [50] = {.index = 71, .length = 2}, + [51] = {.index = 73, .length = 2}, + [52] = {.index = 75, .length = 2}, + [54] = {.index = 77, .length = 2}, [55] = {.index = 79, .length = 1}, - [56] = {.index = 80, .length = 3}, - [57] = {.index = 83, .length = 1}, + [56] = {.index = 80, .length = 1}, + [57] = {.index = 81, .length = 3}, [58] = {.index = 84, .length = 1}, - [59] = {.index = 85, .length = 2}, - [60] = {.index = 87, .length = 1}, - [61] = {.index = 88, .length = 3}, - [62] = {.index = 91, .length = 3}, - [63] = {.index = 94, .length = 2}, - [64] = {.index = 96, .length = 3}, - [65] = {.index = 99, .length = 2}, - [66] = {.index = 101, .length = 5}, - [67] = {.index = 106, .length = 3}, - [68] = {.index = 109, .length = 2}, - [69] = {.index = 111, .length = 2}, - [70] = {.index = 113, .length = 3}, - [71] = {.index = 116, .length = 2}, - [72] = {.index = 118, .length = 2}, - [73] = {.index = 120, .length = 1}, - [74] = {.index = 121, .length = 2}, - [75] = {.index = 123, .length = 2}, - [76] = {.index = 125, .length = 2}, - [77] = {.index = 127, .length = 3}, - [78] = {.index = 130, .length = 2}, - [79] = {.index = 132, .length = 2}, - [80] = {.index = 134, .length = 2}, - [81] = {.index = 136, .length = 1}, - [82] = {.index = 137, .length = 2}, - [83] = {.index = 139, .length = 2}, - [84] = {.index = 141, .length = 4}, - [85] = {.index = 145, .length = 1}, - [86] = {.index = 146, .length = 2}, - [87] = {.index = 148, .length = 1}, - [88] = {.index = 149, .length = 1}, - [89] = {.index = 150, .length = 4}, - [90] = {.index = 154, .length = 4}, - [91] = {.index = 158, .length = 2}, - [92] = {.index = 160, .length = 2}, - [93] = {.index = 162, .length = 3}, - [94] = {.index = 165, .length = 5}, - [95] = {.index = 170, .length = 3}, - [96] = {.index = 173, .length = 2}, - [97] = {.index = 175, .length = 1}, - [99] = {.index = 176, .length = 2}, - [100] = {.index = 178, .length = 2}, - [101] = {.index = 180, .length = 2}, - [102] = {.index = 182, .length = 3}, - [103] = {.index = 185, .length = 2}, - [104] = {.index = 187, .length = 2}, - [105] = {.index = 189, .length = 2}, - [106] = {.index = 191, .length = 2}, - [107] = {.index = 193, .length = 3}, - [108] = {.index = 196, .length = 2}, - [109] = {.index = 198, .length = 1}, - [110] = {.index = 199, .length = 5}, - [111] = {.index = 204, .length = 2}, - [112] = {.index = 206, .length = 3}, - [113] = {.index = 209, .length = 2}, - [114] = {.index = 209, .length = 2}, - [115] = {.index = 211, .length = 3}, - [116] = {.index = 214, .length = 2}, - [117] = {.index = 216, .length = 1}, - [118] = {.index = 217, .length = 4}, - [119] = {.index = 221, .length = 3}, - [120] = {.index = 224, .length = 2}, - [121] = {.index = 226, .length = 2}, - [122] = {.index = 35, .length = 1}, - [123] = {.index = 228, .length = 5}, - [124] = {.index = 233, .length = 4}, - [125] = {.index = 237, .length = 2}, - [126] = {.index = 239, .length = 2}, - [127] = {.index = 241, .length = 2}, - [128] = {.index = 243, .length = 5}, - [129] = {.index = 248, .length = 2}, - [130] = {.index = 250, .length = 3}, + [59] = {.index = 85, .length = 1}, + [60] = {.index = 86, .length = 1}, + [61] = {.index = 87, .length = 1}, + [62] = {.index = 88, .length = 1}, + [63] = {.index = 89, .length = 3}, + [64] = {.index = 92, .length = 3}, + [65] = {.index = 95, .length = 2}, + [66] = {.index = 97, .length = 3}, + [67] = {.index = 100, .length = 2}, + [68] = {.index = 102, .length = 5}, + [69] = {.index = 107, .length = 3}, + [70] = {.index = 110, .length = 2}, + [71] = {.index = 112, .length = 2}, + [72] = {.index = 114, .length = 3}, + [73] = {.index = 117, .length = 2}, + [74] = {.index = 119, .length = 2}, + [75] = {.index = 121, .length = 1}, + [76] = {.index = 122, .length = 2}, + [77] = {.index = 124, .length = 2}, + [78] = {.index = 126, .length = 2}, + [79] = {.index = 128, .length = 3}, + [80] = {.index = 131, .length = 2}, + [81] = {.index = 133, .length = 2}, + [82] = {.index = 135, .length = 2}, + [83] = {.index = 137, .length = 1}, + [84] = {.index = 138, .length = 2}, + [85] = {.index = 140, .length = 2}, + [86] = {.index = 142, .length = 4}, + [87] = {.index = 146, .length = 1}, + [88] = {.index = 147, .length = 2}, + [89] = {.index = 149, .length = 1}, + [90] = {.index = 150, .length = 1}, + [91] = {.index = 151, .length = 4}, + [92] = {.index = 155, .length = 4}, + [93] = {.index = 159, .length = 2}, + [94] = {.index = 161, .length = 2}, + [95] = {.index = 163, .length = 3}, + [96] = {.index = 166, .length = 5}, + [97] = {.index = 171, .length = 3}, + [98] = {.index = 174, .length = 2}, + [99] = {.index = 176, .length = 1}, + [101] = {.index = 177, .length = 2}, + [102] = {.index = 179, .length = 2}, + [103] = {.index = 181, .length = 2}, + [104] = {.index = 183, .length = 3}, + [105] = {.index = 186, .length = 2}, + [106] = {.index = 188, .length = 2}, + [107] = {.index = 190, .length = 2}, + [108] = {.index = 192, .length = 2}, + [109] = {.index = 194, .length = 2}, + [110] = {.index = 196, .length = 3}, + [111] = {.index = 199, .length = 2}, + [112] = {.index = 201, .length = 1}, + [113] = {.index = 202, .length = 5}, + [114] = {.index = 207, .length = 2}, + [115] = {.index = 209, .length = 3}, + [116] = {.index = 212, .length = 2}, + [117] = {.index = 212, .length = 2}, + [118] = {.index = 214, .length = 3}, + [119] = {.index = 217, .length = 2}, + [120] = {.index = 219, .length = 1}, + [121] = {.index = 220, .length = 4}, + [122] = {.index = 224, .length = 3}, + [123] = {.index = 227, .length = 2}, + [124] = {.index = 229, .length = 2}, + [125] = {.index = 36, .length = 1}, + [126] = {.index = 231, .length = 5}, + [127] = {.index = 236, .length = 4}, + [128] = {.index = 240, .length = 2}, + [129] = {.index = 242, .length = 2}, + [130] = {.index = 244, .length = 2}, + [131] = {.index = 246, .length = 5}, + [132] = {.index = 251, .length = 2}, + [133] = {.index = 253, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2834,343 +2951,349 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [18] = {field_path, 1}, [19] = + {field_message, 1}, + [20] = {field_argument, 1}, {field_directive, 0}, - [21] = + [22] = {field_declarator, 1}, {field_type, 0}, - [23] = - {field_parameters, 0}, [24] = - {field_declarator, 0}, + {field_parameters, 0}, [25] = + {field_declarator, 0}, + [26] = {field_body, 2}, {field_value, 1}, - [27] = + [28] = {field_body, 2}, {field_name, 1}, - [29] = - {field_name, 2}, [30] = - {field_body, 2}, + {field_name, 2}, [31] = + {field_body, 2}, + [32] = {field_condition, 1}, {field_consequence, 2}, - [33] = + [34] = {field_body, 2}, {field_condition, 1}, - [35] = - {field_label, 1}, [36] = + {field_label, 1}, + [37] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [39] = - {field_label, 0}, [40] = - {field_declarator, 1}, + {field_label, 0}, [41] = + {field_declarator, 1}, + [42] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, - [44] = + [45] = {field_declarator, 0}, {field_parameters, 1}, - [46] = + [47] = {field_declarator, 1}, {field_type, 0, .inherited = true}, - [48] = + [49] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [51] = - {field_type, 2}, [52] = + {field_type, 2}, + [53] = {field_name, 1}, {field_value, 2}, - [54] = + [55] = {field_name, 1}, {field_parameters, 2}, - [56] = - {field_condition, 1}, [57] = + {field_condition, 1}, + [58] = {field_alternative, 2}, {field_name, 1}, - [59] = - {field_type, 0, .inherited = true}, [60] = + {field_type, 0, .inherited = true}, + [61] = {field_declarator, 2}, {field_type, 0}, - [62] = + [63] = {field_left, 0}, {field_right, 2}, - [64] = + [65] = {field_type, 1}, {field_value, 3}, - [66] = + [67] = {field_declarator, 2}, {field_type, 1}, - [68] = + [69] = {field_declarator, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [70] = + [71] = {field_declarator, 0}, {field_declarator, 1, .inherited = true}, - [72] = + [73] = {field_name, 2}, {field_prefix, 0}, - [74] = + [75] = {field_name, 1}, {field_underlying_type, 3}, - [76] = + [77] = {field_body, 3}, {field_name, 2}, - [78] = - {field_name, 3}, [79] = - {field_body, 3}, + {field_name, 3}, [80] = + {field_body, 3}, + [81] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [83] = - {field_initializer, 0}, [84] = - {field_assembly_code, 2}, + {field_initializer, 0}, [85] = - {field_name, 0}, - {field_type, 2}, + {field_condition, 2}, + [86] = + {field_value, 2}, [87] = - {field_declarator, 2}, + {field_assembly_code, 2}, [88] = + {field_declarator, 2}, + [89] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [91] = + [92] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [94] = + [95] = {field_declarator, 0}, {field_value, 2}, - [96] = + [97] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [99] = + [100] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [101] = + [102] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [106] = + [107] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [109] = + [110] = {field_argument, 0}, {field_index, 2}, - [111] = + [112] = {field_alternative, 3}, {field_condition, 0}, - [113] = + [114] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [116] = + [117] = {field_alternative, 3}, {field_condition, 1}, - [118] = + [119] = {field_alternative, 3}, {field_name, 1}, - [120] = - {field_size, 1}, [121] = + {field_size, 1}, + [122] = {field_declarator, 3}, {field_type, 1}, - [123] = + [124] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [125] = + [126] = {field_name, 0}, {field_value, 2}, - [127] = + [128] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [130] = + [131] = {field_declarator, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [132] = + [133] = {field_body, 4}, {field_name, 3}, - [134] = + [135] = {field_body, 1}, {field_condition, 3}, - [136] = - {field_update, 2}, [137] = + {field_update, 2}, + [138] = {field_initializer, 0}, {field_update, 2}, - [139] = + [140] = {field_condition, 1}, {field_initializer, 0}, - [141] = + [142] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [145] = - {field_operand, 1}, [146] = + {field_operand, 1}, + [147] = {field_assembly_code, 2}, {field_output_operands, 3}, - [148] = - {field_assembly_code, 3}, [149] = - {field_declarator, 3}, + {field_assembly_code, 3}, [150] = + {field_declarator, 3}, + [151] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [154] = + [155] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [158] = + [159] = {field_declarator, 0}, {field_size, 2}, - [160] = + [161] = {field_declarator, 1}, {field_declarator, 2}, - [162] = + [163] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [165] = + [166] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [170] = + [171] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [173] = + [174] = {field_alternative, 4}, {field_condition, 1}, - [175] = - {field_size, 2}, [176] = + {field_size, 2}, + [177] = {field_body, 2}, {field_filter, 1}, - [178] = + [179] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [180] = + [181] = {field_condition, 1}, {field_update, 3}, - [182] = + [183] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [185] = + [186] = {field_initializer, 0}, {field_update, 3}, - [187] = + [188] = {field_condition, 2}, {field_initializer, 0}, - [189] = + [190] = {field_member, 4}, {field_type, 2}, - [191] = + [192] = + {field_condition, 2}, + {field_message, 4}, + [194] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [193] = + [196] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [196] = + [199] = {field_assembly_code, 3}, {field_output_operands, 4}, - [198] = + [201] = {field_declarator, 4}, - [199] = + [202] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [204] = + [207] = {field_declarator, 0}, {field_size, 3}, - [206] = + [209] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [209] = + [212] = {field_designator, 0}, {field_value, 2}, - [211] = + [214] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [214] = + [217] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [216] = + [219] = {field_register, 1}, - [217] = + [220] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [221] = + [224] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [224] = + [227] = {field_constraint, 0}, {field_value, 2}, - [226] = + [229] = {field_register, 1}, {field_register, 2, .inherited = true}, - [228] = + [231] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [233] = + [236] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [237] = + [240] = {field_end, 3}, {field_start, 1}, - [239] = + [242] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [241] = + [244] = {field_label, 1}, {field_label, 2, .inherited = true}, - [243] = + [246] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [248] = + [251] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [250] = + [253] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3190,52 +3313,52 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [15] = { [1] = alias_sym_type_identifier, }, - [21] = { + [22] = { [0] = sym_primitive_type, }, - [24] = { + [25] = { [1] = alias_sym_type_identifier, }, - [25] = { + [26] = { [2] = alias_sym_type_identifier, }, - [29] = { + [30] = { [1] = alias_sym_statement_identifier, }, - [31] = { + [32] = { [0] = alias_sym_statement_identifier, }, - [36] = { + [37] = { [2] = alias_sym_field_identifier, }, [38] = { [2] = alias_sym_type_identifier, }, - [51] = { + [52] = { [1] = alias_sym_type_identifier, }, - [52] = { + [53] = { [0] = alias_sym_field_identifier, }, - [53] = { + [54] = { [2] = alias_sym_type_identifier, }, - [54] = { + [55] = { [3] = alias_sym_type_identifier, }, - [77] = { + [79] = { [1] = alias_sym_type_identifier, }, - [79] = { + [81] = { [3] = alias_sym_type_identifier, }, - [98] = { + [100] = { [1] = alias_sym_field_identifier, }, - [105] = { + [107] = { [4] = alias_sym_field_identifier, }, - [113] = { + [116] = { [0] = alias_sym_field_identifier, }, }; @@ -3256,37 +3379,37 @@ 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] = 24, - [25] = 25, - [26] = 22, + [25] = 22, + [26] = 26, [27] = 23, - [28] = 25, - [29] = 29, - [30] = 29, - [31] = 22, + [28] = 22, + [29] = 24, + [30] = 30, + [31] = 30, [32] = 32, [33] = 23, - [34] = 25, - [35] = 29, - [36] = 36, - [37] = 32, - [38] = 23, - [39] = 25, + [34] = 24, + [35] = 30, + [36] = 32, + [37] = 23, + [38] = 24, + [39] = 30, [40] = 32, - [41] = 29, + [41] = 41, [42] = 32, [43] = 43, [44] = 44, @@ -3295,31 +3418,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 46, + [50] = 48, [51] = 45, - [52] = 49, - [53] = 45, - [54] = 47, - [55] = 48, - [56] = 46, - [57] = 47, + [52] = 46, + [53] = 48, + [54] = 49, + [55] = 49, + [56] = 47, + [57] = 46, [58] = 45, - [59] = 46, - [60] = 49, + [59] = 47, + [60] = 48, [61] = 49, - [62] = 48, - [63] = 48, - [64] = 47, - [65] = 65, - [66] = 65, - [67] = 46, - [68] = 65, - [69] = 45, - [70] = 65, - [71] = 47, - [72] = 65, - [73] = 49, - [74] = 48, + [62] = 45, + [63] = 47, + [64] = 46, + [65] = 49, + [66] = 66, + [67] = 66, + [68] = 66, + [69] = 46, + [70] = 66, + [71] = 45, + [72] = 47, + [73] = 48, + [74] = 66, [75] = 75, [76] = 75, [77] = 75, @@ -3332,9 +3455,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [84] = 84, [85] = 85, [86] = 86, - [87] = 82, + [87] = 87, [88] = 88, - [89] = 88, + [89] = 89, [90] = 90, [91] = 91, [92] = 92, @@ -3358,8 +3481,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [110] = 110, [111] = 111, [112] = 112, - [113] = 113, - [114] = 114, + [113] = 95, + [114] = 103, [115] = 115, [116] = 116, [117] = 117, @@ -3391,283 +3514,283 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [143] = 143, [144] = 144, [145] = 145, - [146] = 80, - [147] = 80, - [148] = 80, - [149] = 90, - [150] = 83, - [151] = 88, - [152] = 97, - [153] = 84, - [154] = 81, + [146] = 146, + [147] = 147, + [148] = 148, + [149] = 80, + [150] = 80, + [151] = 80, + [152] = 118, + [153] = 83, + [154] = 84, [155] = 85, - [156] = 91, - [157] = 110, - [158] = 92, - [159] = 93, - [160] = 111, - [161] = 108, - [162] = 112, - [163] = 109, - [164] = 105, - [165] = 108, + [156] = 86, + [157] = 87, + [158] = 88, + [159] = 115, + [160] = 92, + [161] = 93, + [162] = 81, + [163] = 94, + [164] = 102, + [165] = 95, [166] = 90, - [167] = 114, - [168] = 115, + [167] = 115, + [168] = 91, [169] = 117, - [170] = 113, - [171] = 109, - [172] = 86, - [173] = 82, + [170] = 96, + [171] = 92, + [172] = 93, + [173] = 94, [174] = 118, - [175] = 94, - [176] = 83, - [177] = 88, - [178] = 81, - [179] = 86, - [180] = 109, - [181] = 105, - [182] = 108, - [183] = 114, - [184] = 115, - [185] = 117, - [186] = 82, - [187] = 95, - [188] = 86, - [189] = 98, - [190] = 99, - [191] = 105, - [192] = 118, - [193] = 98, - [194] = 99, - [195] = 104, - [196] = 106, - [197] = 107, - [198] = 90, - [199] = 118, - [200] = 116, - [201] = 97, - [202] = 84, - [203] = 85, + [175] = 98, + [176] = 97, + [177] = 99, + [178] = 84, + [179] = 85, + [180] = 86, + [181] = 100, + [182] = 87, + [183] = 100, + [184] = 101, + [185] = 103, + [186] = 88, + [187] = 89, + [188] = 81, + [189] = 90, + [190] = 82, + [191] = 116, + [192] = 104, + [193] = 102, + [194] = 95, + [195] = 115, + [196] = 105, + [197] = 96, + [198] = 112, + [199] = 98, + [200] = 99, + [201] = 100, + [202] = 101, + [203] = 103, [204] = 91, - [205] = 116, - [206] = 96, - [207] = 100, - [208] = 101, - [209] = 103, - [210] = 110, - [211] = 111, - [212] = 112, - [213] = 113, - [214] = 93, - [215] = 94, - [216] = 95, - [217] = 102, - [218] = 98, - [219] = 99, - [220] = 101, - [221] = 103, - [222] = 104, - [223] = 106, - [224] = 107, - [225] = 101, - [226] = 103, - [227] = 110, - [228] = 111, - [229] = 112, - [230] = 113, - [231] = 116, - [232] = 97, - [233] = 84, - [234] = 85, - [235] = 91, - [236] = 92, - [237] = 93, - [238] = 94, - [239] = 95, - [240] = 96, - [241] = 100, - [242] = 102, - [243] = 96, - [244] = 81, - [245] = 83, - [246] = 115, - [247] = 104, - [248] = 117, - [249] = 106, - [250] = 107, - [251] = 100, - [252] = 114, - [253] = 102, - [254] = 92, - [255] = 121, - [256] = 145, - [257] = 143, - [258] = 120, - [259] = 121, - [260] = 122, - [261] = 124, - [262] = 125, - [263] = 126, - [264] = 123, - [265] = 128, - [266] = 127, - [267] = 119, - [268] = 131, - [269] = 137, - [270] = 270, - [271] = 129, - [272] = 130, - [273] = 132, - [274] = 133, - [275] = 134, - [276] = 135, - [277] = 136, - [278] = 138, - [279] = 139, - [280] = 140, - [281] = 141, - [282] = 131, - [283] = 142, - [284] = 144, + [205] = 106, + [206] = 107, + [207] = 104, + [208] = 105, + [209] = 106, + [210] = 107, + [211] = 110, + [212] = 111, + [213] = 112, + [214] = 108, + [215] = 83, + [216] = 84, + [217] = 85, + [218] = 86, + [219] = 87, + [220] = 88, + [221] = 92, + [222] = 93, + [223] = 108, + [224] = 109, + [225] = 116, + [226] = 117, + [227] = 97, + [228] = 82, + [229] = 81, + [230] = 90, + [231] = 91, + [232] = 94, + [233] = 89, + [234] = 109, + [235] = 104, + [236] = 96, + [237] = 105, + [238] = 110, + [239] = 111, + [240] = 112, + [241] = 106, + [242] = 118, + [243] = 107, + [244] = 83, + [245] = 98, + [246] = 108, + [247] = 116, + [248] = 109, + [249] = 99, + [250] = 117, + [251] = 102, + [252] = 110, + [253] = 101, + [254] = 111, + [255] = 97, + [256] = 82, + [257] = 89, + [258] = 133, + [259] = 128, + [260] = 129, + [261] = 147, + [262] = 146, + [263] = 147, + [264] = 148, + [265] = 123, + [266] = 130, + [267] = 122, + [268] = 125, + [269] = 129, + [270] = 133, + [271] = 134, + [272] = 142, + [273] = 124, + [274] = 126, + [275] = 127, + [276] = 128, + [277] = 130, + [278] = 148, + [279] = 123, + [280] = 121, + [281] = 131, + [282] = 142, + [283] = 119, + [284] = 124, [285] = 145, - [286] = 120, - [287] = 122, - [288] = 124, - [289] = 123, - [290] = 128, - [291] = 127, - [292] = 119, - [293] = 129, - [294] = 130, + [286] = 131, + [287] = 135, + [288] = 136, + [289] = 125, + [290] = 126, + [291] = 144, + [292] = 137, + [293] = 146, + [294] = 138, [295] = 132, - [296] = 134, - [297] = 135, + [296] = 135, + [297] = 120, [298] = 136, - [299] = 138, - [300] = 139, - [301] = 140, - [302] = 141, - [303] = 142, - [304] = 143, - [305] = 121, - [306] = 125, - [307] = 126, - [308] = 133, - [309] = 142, - [310] = 144, - [311] = 137, - [312] = 270, - [313] = 313, - [314] = 313, - [315] = 122, - [316] = 316, - [317] = 128, - [318] = 127, - [319] = 119, + [299] = 137, + [300] = 127, + [301] = 138, + [302] = 122, + [303] = 139, + [304] = 121, + [305] = 132, + [306] = 120, + [307] = 122, + [308] = 139, + [309] = 140, + [310] = 141, + [311] = 143, + [312] = 119, + [313] = 144, + [314] = 129, + [315] = 145, + [316] = 140, + [317] = 143, + [318] = 141, + [319] = 134, [320] = 320, [321] = 321, - [322] = 322, - [323] = 323, - [324] = 129, - [325] = 130, - [326] = 132, - [327] = 133, - [328] = 134, - [329] = 135, + [322] = 139, + [323] = 121, + [324] = 140, + [325] = 123, + [326] = 141, + [327] = 142, + [328] = 143, + [329] = 119, [330] = 144, - [331] = 136, - [332] = 138, - [333] = 323, - [334] = 139, - [335] = 140, - [336] = 141, - [337] = 313, - [338] = 338, - [339] = 124, - [340] = 340, - [341] = 125, - [342] = 342, - [343] = 340, - [344] = 316, - [345] = 338, - [346] = 321, - [347] = 323, - [348] = 340, - [349] = 316, - [350] = 338, - [351] = 126, - [352] = 321, - [353] = 323, - [354] = 123, - [355] = 342, - [356] = 356, - [357] = 340, - [358] = 316, - [359] = 338, - [360] = 338, - [361] = 145, - [362] = 340, - [363] = 143, - [364] = 321, - [365] = 323, - [366] = 316, - [367] = 342, - [368] = 120, - [369] = 342, - [370] = 370, - [371] = 342, - [372] = 313, - [373] = 321, - [374] = 374, - [375] = 374, - [376] = 374, - [377] = 374, - [378] = 378, - [379] = 378, - [380] = 380, - [381] = 378, - [382] = 382, - [383] = 270, - [384] = 378, - [385] = 378, - [386] = 382, - [387] = 382, - [388] = 382, - [389] = 382, - [390] = 378, - [391] = 382, - [392] = 392, - [393] = 392, - [394] = 394, - [395] = 395, - [396] = 270, - [397] = 270, - [398] = 80, - [399] = 399, - [400] = 400, - [401] = 400, - [402] = 400, - [403] = 400, - [404] = 400, - [405] = 400, - [406] = 400, - [407] = 400, + [331] = 145, + [332] = 146, + [333] = 147, + [334] = 148, + [335] = 124, + [336] = 125, + [337] = 126, + [338] = 127, + [339] = 128, + [340] = 130, + [341] = 341, + [342] = 132, + [343] = 343, + [344] = 133, + [345] = 134, + [346] = 135, + [347] = 347, + [348] = 136, + [349] = 137, + [350] = 138, + [351] = 351, + [352] = 351, + [353] = 353, + [354] = 351, + [355] = 353, + [356] = 353, + [357] = 353, + [358] = 351, + [359] = 351, + [360] = 353, + [361] = 353, + [362] = 351, + [363] = 347, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 365, + [370] = 364, + [371] = 366, + [372] = 372, + [373] = 368, + [374] = 366, + [375] = 368, + [376] = 365, + [377] = 377, + [378] = 367, + [379] = 366, + [380] = 368, + [381] = 365, + [382] = 367, + [383] = 372, + [384] = 377, + [385] = 366, + [386] = 368, + [387] = 365, + [388] = 367, + [389] = 372, + [390] = 377, + [391] = 367, + [392] = 372, + [393] = 372, + [394] = 377, + [395] = 364, + [396] = 364, + [397] = 377, + [398] = 398, + [399] = 398, + [400] = 398, + [401] = 398, + [402] = 402, + [403] = 402, + [404] = 404, + [405] = 405, + [406] = 347, + [407] = 407, [408] = 408, - [409] = 270, - [410] = 410, - [411] = 411, + [409] = 347, + [410] = 347, + [411] = 80, [412] = 412, - [413] = 413, + [413] = 347, [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 380, + [415] = 414, + [416] = 414, + [417] = 414, + [418] = 414, + [419] = 414, + [420] = 414, + [421] = 414, + [422] = 422, [423] = 423, [424] = 424, [425] = 425, @@ -3675,70 +3798,70 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [427] = 427, [428] = 428, [429] = 429, - [430] = 429, - [431] = 426, + [430] = 430, + [431] = 431, [432] = 432, - [433] = 427, - [434] = 428, - [435] = 435, - [436] = 426, - [437] = 427, - [438] = 428, - [439] = 429, + [433] = 433, + [434] = 434, + [435] = 405, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, [440] = 440, [441] = 441, [442] = 442, [443] = 443, [444] = 444, - [445] = 444, - [446] = 446, + [445] = 445, + [446] = 442, [447] = 447, [448] = 448, - [449] = 444, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 452, - [454] = 451, - [455] = 455, - [456] = 456, + [449] = 441, + [450] = 445, + [451] = 448, + [452] = 441, + [453] = 453, + [454] = 442, + [455] = 445, + [456] = 448, [457] = 457, [458] = 458, [459] = 459, - [460] = 460, - [461] = 461, - [462] = 456, + [460] = 458, + [461] = 459, + [462] = 462, [463] = 463, - [464] = 458, + [464] = 464, [465] = 465, - [466] = 456, + [466] = 464, [467] = 467, - [468] = 458, + [468] = 468, [469] = 469, [470] = 470, - [471] = 470, - [472] = 456, - [473] = 456, - [474] = 470, - [475] = 458, + [471] = 465, + [472] = 472, + [473] = 473, + [474] = 472, + [475] = 464, [476] = 476, - [477] = 477, - [478] = 470, + [477] = 472, + [478] = 464, [479] = 479, - [480] = 470, + [480] = 480, [481] = 481, - [482] = 470, - [483] = 456, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, - [488] = 484, - [489] = 489, - [490] = 490, - [491] = 484, + [482] = 482, + [483] = 483, + [484] = 464, + [485] = 472, + [486] = 465, + [487] = 465, + [488] = 464, + [489] = 472, + [490] = 472, + [491] = 457, [492] = 492, - [493] = 484, + [493] = 493, [494] = 494, [495] = 495, [496] = 496, @@ -3747,138 +3870,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [499] = 499, [500] = 500, [501] = 501, - [502] = 501, + [502] = 502, [503] = 503, [504] = 504, [505] = 505, [506] = 506, - [507] = 505, - [508] = 505, - [509] = 501, - [510] = 504, + [507] = 457, + [508] = 508, + [509] = 509, + [510] = 510, [511] = 511, [512] = 512, [513] = 513, - [514] = 514, + [514] = 510, [515] = 515, [516] = 516, - [517] = 499, + [517] = 517, [518] = 518, - [519] = 519, - [520] = 506, + [519] = 509, + [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 506, - [525] = 501, + [524] = 524, + [525] = 525, [526] = 521, - [527] = 410, + [527] = 523, [528] = 528, - [529] = 505, + [529] = 529, [530] = 530, [531] = 531, - [532] = 532, - [533] = 512, - [534] = 534, - [535] = 500, - [536] = 536, - [537] = 521, - [538] = 536, - [539] = 513, - [540] = 534, - [541] = 532, - [542] = 542, - [543] = 514, - [544] = 515, - [545] = 545, - [546] = 546, + [532] = 515, + [533] = 517, + [534] = 509, + [535] = 508, + [536] = 510, + [537] = 518, + [538] = 510, + [539] = 539, + [540] = 525, + [541] = 518, + [542] = 521, + [543] = 523, + [544] = 544, + [545] = 528, + [546] = 529, [547] = 547, - [548] = 513, - [549] = 516, - [550] = 532, - [551] = 519, - [552] = 534, - [553] = 500, - [554] = 554, - [555] = 554, - [556] = 536, - [557] = 534, - [558] = 500, + [548] = 548, + [549] = 530, + [550] = 531, + [551] = 508, + [552] = 515, + [553] = 517, + [554] = 509, + [555] = 528, + [556] = 556, + [557] = 525, + [558] = 544, [559] = 559, - [560] = 512, - [561] = 513, - [562] = 562, - [563] = 536, - [564] = 522, - [565] = 514, - [566] = 559, - [567] = 512, - [568] = 513, - [569] = 514, - [570] = 515, - [571] = 516, - [572] = 499, - [573] = 518, - [574] = 519, - [575] = 506, - [576] = 521, - [577] = 499, - [578] = 501, - [579] = 505, - [580] = 512, - [581] = 514, - [582] = 515, - [583] = 516, - [584] = 499, - [585] = 518, - [586] = 519, - [587] = 506, - [588] = 521, - [589] = 501, - [590] = 505, - [591] = 532, - [592] = 534, - [593] = 500, - [594] = 536, - [595] = 518, - [596] = 559, - [597] = 522, - [598] = 515, - [599] = 522, - [600] = 512, - [601] = 522, - [602] = 513, - [603] = 514, - [604] = 532, - [605] = 554, - [606] = 534, - [607] = 500, - [608] = 516, - [609] = 536, - [610] = 515, - [611] = 516, - [612] = 499, - [613] = 518, - [614] = 518, - [615] = 519, - [616] = 506, - [617] = 521, - [618] = 519, - [619] = 532, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 626, - [627] = 627, - [628] = 628, + [560] = 529, + [561] = 530, + [562] = 547, + [563] = 563, + [564] = 521, + [565] = 548, + [566] = 544, + [567] = 567, + [568] = 547, + [569] = 569, + [570] = 508, + [571] = 571, + [572] = 518, + [573] = 544, + [574] = 513, + [575] = 531, + [576] = 556, + [577] = 516, + [578] = 547, + [579] = 548, + [580] = 524, + [581] = 525, + [582] = 521, + [583] = 523, + [584] = 528, + [585] = 529, + [586] = 530, + [587] = 531, + [588] = 515, + [589] = 517, + [590] = 509, + [591] = 591, + [592] = 510, + [593] = 518, + [594] = 525, + [595] = 523, + [596] = 528, + [597] = 529, + [598] = 530, + [599] = 531, + [600] = 515, + [601] = 517, + [602] = 509, + [603] = 510, + [604] = 518, + [605] = 544, + [606] = 547, + [607] = 548, + [608] = 508, + [609] = 508, + [610] = 556, + [611] = 611, + [612] = 556, + [613] = 556, + [614] = 524, + [615] = 544, + [616] = 513, + [617] = 547, + [618] = 548, + [619] = 525, + [620] = 521, + [621] = 523, + [622] = 528, + [623] = 529, + [624] = 530, + [625] = 531, + [626] = 515, + [627] = 517, + [628] = 548, [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, + [630] = 629, + [631] = 629, + [632] = 629, + [633] = 426, [634] = 634, [635] = 635, [636] = 636, @@ -3887,55 +4010,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [639] = 639, [640] = 640, [641] = 640, - [642] = 639, - [643] = 639, + [642] = 640, + [643] = 638, [644] = 640, - [645] = 640, - [646] = 639, + [645] = 638, + [646] = 638, [647] = 647, [648] = 648, - [649] = 649, + [649] = 408, [650] = 650, [651] = 651, - [652] = 651, + [652] = 652, [653] = 653, [654] = 654, - [655] = 654, - [656] = 395, - [657] = 651, - [658] = 654, - [659] = 394, - [660] = 654, - [661] = 651, - [662] = 662, - [663] = 663, - [664] = 653, + [655] = 407, + [656] = 656, + [657] = 657, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 657, + [663] = 658, + [664] = 664, [665] = 665, - [666] = 666, + [666] = 657, [667] = 667, [668] = 668, - [669] = 669, + [669] = 658, [670] = 670, [671] = 671, [672] = 672, [673] = 673, - [674] = 674, - [675] = 675, + [674] = 658, + [675] = 657, [676] = 676, [677] = 677, - [678] = 678, + [678] = 677, [679] = 679, - [680] = 680, - [681] = 681, + [680] = 679, + [681] = 677, [682] = 682, - [683] = 666, + [683] = 677, [684] = 684, - [685] = 676, - [686] = 666, - [687] = 676, - [688] = 666, - [689] = 676, - [690] = 690, + [685] = 679, + [686] = 679, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 651, [691] = 691, [692] = 692, [693] = 693, @@ -3952,36 +4075,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [704] = 704, [705] = 705, [706] = 706, - [707] = 694, + [707] = 707, [708] = 708, [709] = 709, [710] = 710, - [711] = 700, + [711] = 711, [712] = 712, - [713] = 663, - [714] = 625, - [715] = 625, + [713] = 713, + [714] = 714, + [715] = 682, [716] = 716, - [717] = 394, - [718] = 395, + [717] = 717, + [718] = 718, [719] = 719, [720] = 720, [721] = 721, [722] = 722, [723] = 723, [724] = 724, - [725] = 725, + [725] = 684, [726] = 726, [727] = 727, [728] = 728, [729] = 729, [730] = 730, - [731] = 731, - [732] = 732, + [731] = 408, + [732] = 650, [733] = 733, - [734] = 734, - [735] = 735, - [736] = 736, + [734] = 407, + [735] = 650, + [736] = 689, [737] = 737, [738] = 738, [739] = 739, @@ -4028,25 +4151,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 778, + [783] = 783, [784] = 784, [785] = 785, - [786] = 778, - [787] = 142, - [788] = 788, - [789] = 782, - [790] = 778, - [791] = 143, - [792] = 121, - [793] = 778, + [786] = 122, + [787] = 125, + [788] = 129, + [789] = 133, + [790] = 134, + [791] = 142, + [792] = 792, + [793] = 793, [794] = 794, - [795] = 125, - [796] = 782, - [797] = 126, - [798] = 133, + [795] = 795, + [796] = 796, + [797] = 797, + [798] = 798, [799] = 799, [800] = 800, - [801] = 782, + [801] = 801, [802] = 802, [803] = 803, [804] = 804, @@ -4060,288 +4183,288 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [812] = 812, [813] = 813, [814] = 814, - [815] = 806, - [816] = 809, - [817] = 817, - [818] = 810, - [819] = 811, + [815] = 815, + [816] = 816, + [817] = 816, + [818] = 818, + [819] = 816, [820] = 820, - [821] = 821, - [822] = 812, - [823] = 807, + [821] = 818, + [822] = 816, + [823] = 823, [824] = 824, - [825] = 817, - [826] = 805, - [827] = 625, - [828] = 828, - [829] = 813, - [830] = 830, - [831] = 808, - [832] = 828, - [833] = 830, - [834] = 814, - [835] = 675, + [825] = 825, + [826] = 818, + [827] = 816, + [828] = 818, + [829] = 829, + [830] = 650, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 831, + [835] = 835, [836] = 836, - [837] = 675, - [838] = 788, - [839] = 636, - [840] = 784, - [841] = 627, - [842] = 777, - [843] = 775, - [844] = 779, - [845] = 780, - [846] = 781, - [847] = 800, - [848] = 848, - [849] = 802, - [850] = 803, - [851] = 776, - [852] = 777, - [853] = 804, - [854] = 785, - [855] = 799, - [856] = 775, - [857] = 779, - [858] = 780, - [859] = 781, - [860] = 142, - [861] = 143, - [862] = 802, - [863] = 125, - [864] = 126, - [865] = 133, - [866] = 142, - [867] = 143, - [868] = 121, - [869] = 125, - [870] = 126, - [871] = 133, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 835, + [845] = 838, + [846] = 846, + [847] = 837, + [848] = 836, + [849] = 833, + [850] = 840, + [851] = 843, + [852] = 842, + [853] = 839, + [854] = 832, + [855] = 841, + [856] = 846, + [857] = 857, + [858] = 659, + [859] = 696, + [860] = 696, + [861] = 673, + [862] = 862, + [863] = 796, + [864] = 864, + [865] = 793, + [866] = 795, + [867] = 797, + [868] = 798, + [869] = 794, + [870] = 806, + [871] = 799, [872] = 800, - [873] = 873, - [874] = 874, - [875] = 804, - [876] = 785, - [877] = 873, - [878] = 799, - [879] = 803, - [880] = 776, - [881] = 873, - [882] = 873, - [883] = 883, - [884] = 121, - [885] = 702, - [886] = 886, - [887] = 887, - [888] = 697, - [889] = 699, - [890] = 890, - [891] = 828, - [892] = 830, - [893] = 805, - [894] = 807, - [895] = 808, - [896] = 809, - [897] = 810, - [898] = 811, - [899] = 812, - [900] = 813, - [901] = 814, - [902] = 817, - [903] = 903, - [904] = 904, - [905] = 691, - [906] = 692, - [907] = 701, - [908] = 908, - [909] = 806, - [910] = 693, - [911] = 675, - [912] = 912, - [913] = 102, - [914] = 95, - [915] = 103, - [916] = 698, - [917] = 696, - [918] = 110, - [919] = 101, - [920] = 111, - [921] = 94, - [922] = 112, - [923] = 113, - [924] = 924, - [925] = 93, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 111, - [930] = 112, - [931] = 113, - [932] = 101, - [933] = 103, - [934] = 94, - [935] = 95, - [936] = 110, - [937] = 102, - [938] = 93, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, + [873] = 792, + [874] = 793, + [875] = 794, + [876] = 795, + [877] = 796, + [878] = 797, + [879] = 798, + [880] = 799, + [881] = 800, + [882] = 801, + [883] = 802, + [884] = 122, + [885] = 125, + [886] = 129, + [887] = 108, + [888] = 109, + [889] = 134, + [890] = 801, + [891] = 116, + [892] = 117, + [893] = 97, + [894] = 82, + [895] = 142, + [896] = 81, + [897] = 90, + [898] = 91, + [899] = 94, + [900] = 792, + [901] = 802, + [902] = 122, + [903] = 125, + [904] = 129, + [905] = 133, + [906] = 134, + [907] = 142, + [908] = 806, + [909] = 829, + [910] = 864, + [911] = 820, + [912] = 864, + [913] = 864, + [914] = 133, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 727, + [924] = 836, + [925] = 831, + [926] = 835, + [927] = 841, + [928] = 837, + [929] = 838, + [930] = 839, + [931] = 840, + [932] = 842, + [933] = 933, + [934] = 843, + [935] = 846, + [936] = 832, + [937] = 717, + [938] = 728, + [939] = 718, + [940] = 833, + [941] = 722, + [942] = 720, + [943] = 719, [944] = 944, [945] = 945, - [946] = 927, - [947] = 926, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 950, - [955] = 952, - [956] = 948, - [957] = 949, + [946] = 729, + [947] = 721, + [948] = 696, + [949] = 117, + [950] = 109, + [951] = 97, + [952] = 82, + [953] = 81, + [954] = 90, + [955] = 91, + [956] = 94, + [957] = 957, [958] = 958, - [959] = 805, - [960] = 810, - [961] = 812, - [962] = 813, - [963] = 828, - [964] = 830, - [965] = 805, - [966] = 806, - [967] = 807, - [968] = 808, - [969] = 809, - [970] = 810, - [971] = 811, - [972] = 812, - [973] = 813, - [974] = 814, - [975] = 830, - [976] = 806, - [977] = 807, - [978] = 814, - [979] = 808, - [980] = 817, - [981] = 817, - [982] = 828, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 116, + [963] = 108, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 964, + [973] = 973, + [974] = 974, + [975] = 970, + [976] = 964, + [977] = 970, + [978] = 964, + [979] = 970, + [980] = 980, + [981] = 981, + [982] = 982, [983] = 983, - [984] = 809, - [985] = 811, - [986] = 986, + [984] = 984, + [985] = 985, + [986] = 982, [987] = 987, [988] = 988, [989] = 989, [990] = 990, - [991] = 991, - [992] = 992, + [991] = 988, + [992] = 987, [993] = 993, - [994] = 993, + [994] = 990, [995] = 995, - [996] = 996, - [997] = 992, + [996] = 993, + [997] = 997, [998] = 998, - [999] = 993, - [1000] = 1000, - [1001] = 1001, - [1002] = 992, - [1003] = 993, - [1004] = 992, - [1005] = 1005, - [1006] = 1006, - [1007] = 1006, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 836, - [1012] = 1012, - [1013] = 1013, - [1014] = 824, + [999] = 960, + [1000] = 961, + [1001] = 838, + [1002] = 836, + [1003] = 837, + [1004] = 838, + [1005] = 839, + [1006] = 840, + [1007] = 841, + [1008] = 842, + [1009] = 843, + [1010] = 842, + [1011] = 1011, + [1012] = 831, + [1013] = 843, + [1014] = 835, [1015] = 1015, - [1016] = 1016, + [1016] = 836, [1017] = 1017, - [1018] = 1017, - [1019] = 1019, - [1020] = 813, - [1021] = 874, + [1018] = 837, + [1019] = 846, + [1020] = 832, + [1021] = 1021, [1022] = 1022, - [1023] = 1023, - [1024] = 814, - [1025] = 1025, - [1026] = 704, - [1027] = 1027, + [1023] = 839, + [1024] = 840, + [1025] = 846, + [1026] = 841, + [1027] = 833, [1028] = 1028, - [1029] = 1029, - [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1031, + [1029] = 832, + [1030] = 833, + [1031] = 831, + [1032] = 835, + [1033] = 1033, [1034] = 1034, - [1035] = 1028, - [1036] = 817, - [1037] = 1037, - [1038] = 1038, + [1035] = 1035, + [1036] = 1036, + [1037] = 857, + [1038] = 862, [1039] = 1039, - [1040] = 1040, - [1041] = 1041, + [1040] = 706, + [1041] = 700, [1042] = 1042, [1043] = 1043, - [1044] = 712, - [1045] = 1019, + [1044] = 918, + [1045] = 1045, [1046] = 1046, - [1047] = 1019, - [1048] = 1048, - [1049] = 1049, - [1050] = 848, - [1051] = 828, - [1052] = 1029, - [1053] = 983, - [1054] = 830, - [1055] = 1028, - [1056] = 1028, - [1057] = 1029, - [1058] = 805, - [1059] = 806, - [1060] = 807, - [1061] = 808, - [1062] = 809, - [1063] = 810, - [1064] = 811, - [1065] = 1019, - [1066] = 812, - [1067] = 1019, - [1068] = 883, - [1069] = 1019, - [1070] = 1029, + [1047] = 1046, + [1048] = 915, + [1049] = 917, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1050, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 832, + [1061] = 1061, + [1062] = 833, + [1063] = 831, + [1064] = 835, + [1065] = 836, + [1066] = 837, + [1067] = 838, + [1068] = 839, + [1069] = 840, + [1070] = 841, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1072, + [1074] = 842, + [1075] = 1058, + [1076] = 843, [1077] = 1077, [1078] = 1078, [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 1072, - [1083] = 1083, - [1084] = 1080, - [1085] = 1072, - [1086] = 1086, + [1082] = 1071, + [1083] = 1057, + [1084] = 1058, + [1085] = 1085, + [1086] = 1071, [1087] = 1087, - [1088] = 1072, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, + [1088] = 1057, + [1089] = 1058, + [1090] = 846, + [1091] = 1071, + [1092] = 1071, + [1093] = 1057, + [1094] = 1011, [1095] = 1095, - [1096] = 1096, + [1096] = 1071, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -4351,199 +4474,199 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1103] = 1103, [1104] = 1104, [1105] = 1105, - [1106] = 1106, - [1107] = 1102, + [1106] = 1099, + [1107] = 1099, [1108] = 1108, - [1109] = 1104, + [1109] = 700, [1110] = 1110, - [1111] = 1105, - [1112] = 712, - [1113] = 750, - [1114] = 704, - [1115] = 1115, - [1116] = 1116, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1099, + [1116] = 1099, [1117] = 1117, [1118] = 1118, [1119] = 1119, [1120] = 1120, [1121] = 1121, - [1122] = 764, - [1123] = 767, - [1124] = 741, - [1125] = 765, - [1126] = 742, - [1127] = 743, - [1128] = 1128, - [1129] = 744, - [1130] = 745, - [1131] = 736, - [1132] = 1128, - [1133] = 1128, - [1134] = 762, - [1135] = 737, - [1136] = 750, - [1137] = 754, - [1138] = 739, - [1139] = 1128, + [1122] = 1122, + [1123] = 1108, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 706, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1132, + [1136] = 1136, + [1137] = 783, + [1138] = 1138, + [1139] = 1131, [1140] = 1140, - [1141] = 1121, + [1141] = 1141, [1142] = 1140, [1143] = 1143, - [1144] = 1143, - [1145] = 1143, + [1144] = 1144, + [1145] = 1145, [1146] = 1146, - [1147] = 1140, + [1147] = 1147, [1148] = 1148, [1149] = 1149, - [1150] = 1146, - [1151] = 1140, - [1152] = 1149, - [1153] = 1149, - [1154] = 1143, - [1155] = 1140, - [1156] = 1140, - [1157] = 1146, - [1158] = 824, - [1159] = 1159, - [1160] = 1160, - [1161] = 1159, - [1162] = 1162, - [1163] = 1163, + [1150] = 812, + [1151] = 785, + [1152] = 813, + [1153] = 804, + [1154] = 805, + [1155] = 814, + [1156] = 810, + [1157] = 807, + [1158] = 803, + [1159] = 815, + [1160] = 783, + [1161] = 808, + [1162] = 809, + [1163] = 811, [1164] = 1164, [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, + [1166] = 1165, + [1167] = 1165, + [1168] = 1165, [1169] = 1169, - [1170] = 1168, - [1171] = 1169, - [1172] = 1172, - [1173] = 1173, + [1170] = 1169, + [1171] = 1171, + [1172] = 1164, + [1173] = 1171, [1174] = 1174, - [1175] = 1175, + [1175] = 1169, [1176] = 1176, - [1177] = 1177, - [1178] = 1164, - [1179] = 1179, - [1180] = 1160, - [1181] = 1181, - [1182] = 1182, - [1183] = 1183, - [1184] = 1183, - [1185] = 1185, - [1186] = 1186, - [1187] = 1174, + [1177] = 1171, + [1178] = 1176, + [1179] = 1174, + [1180] = 1169, + [1181] = 1169, + [1182] = 1174, + [1183] = 1174, + [1184] = 1176, + [1185] = 1169, + [1186] = 857, + [1187] = 1187, [1188] = 1188, - [1189] = 1173, + [1189] = 1189, [1190] = 1190, [1191] = 1191, - [1192] = 1190, + [1192] = 1192, [1193] = 1193, - [1194] = 1163, + [1194] = 1194, [1195] = 1195, [1196] = 1196, - [1197] = 1159, - [1198] = 1188, - [1199] = 1186, - [1200] = 1186, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, + [1200] = 1200, [1201] = 1201, - [1202] = 1162, + [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 1186, - [1206] = 1172, + [1205] = 1205, + [1206] = 1206, [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 1211, - [1212] = 690, + [1211] = 1191, + [1212] = 1193, [1213] = 1213, - [1214] = 1214, - [1215] = 1181, - [1216] = 1196, - [1217] = 1201, - [1218] = 1207, - [1219] = 1209, - [1220] = 1210, - [1221] = 1211, - [1222] = 1191, - [1223] = 1204, - [1224] = 1179, - [1225] = 1225, + [1214] = 1198, + [1215] = 1215, + [1216] = 1206, + [1217] = 1215, + [1218] = 1218, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 1196, + [1225] = 1218, [1226] = 1226, - [1227] = 1193, - [1228] = 1228, - [1229] = 1229, - [1230] = 991, - [1231] = 1231, - [1232] = 1214, - [1233] = 1165, - [1234] = 1234, - [1235] = 1235, - [1236] = 690, - [1237] = 986, - [1238] = 1208, - [1239] = 1001, + [1227] = 1194, + [1228] = 1221, + [1229] = 701, + [1230] = 1230, + [1231] = 1222, + [1232] = 1195, + [1233] = 1233, + [1234] = 1196, + [1235] = 1207, + [1236] = 1189, + [1237] = 1190, + [1238] = 1195, + [1239] = 1196, [1240] = 1240, - [1241] = 1234, - [1242] = 998, - [1243] = 1240, - [1244] = 1244, + [1241] = 1241, + [1242] = 1242, + [1243] = 1201, + [1244] = 1242, [1245] = 1245, - [1246] = 1228, - [1247] = 1234, - [1248] = 1240, - [1249] = 1228, - [1250] = 1234, - [1251] = 1240, - [1252] = 1203, - [1253] = 1253, - [1254] = 1254, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1197, + [1251] = 1034, + [1252] = 1252, + [1253] = 1199, + [1254] = 1249, [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1253, - [1259] = 1253, - [1260] = 1260, - [1261] = 1253, + [1256] = 1213, + [1257] = 1219, + [1258] = 1209, + [1259] = 1259, + [1260] = 1233, + [1261] = 1188, [1262] = 1262, - [1263] = 1263, + [1263] = 1192, [1264] = 1264, - [1265] = 1265, - [1266] = 1265, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1267, - [1271] = 1267, - [1272] = 1267, - [1273] = 1265, - [1274] = 1265, - [1275] = 1275, + [1265] = 1035, + [1266] = 1259, + [1267] = 1246, + [1268] = 1249, + [1269] = 1252, + [1270] = 1255, + [1271] = 1259, + [1272] = 1246, + [1273] = 1249, + [1274] = 1252, + [1275] = 1255, [1276] = 1276, - [1277] = 1277, - [1278] = 1275, - [1279] = 1275, + [1277] = 1202, + [1278] = 1240, + [1279] = 1246, [1280] = 1280, - [1281] = 1254, - [1282] = 1282, - [1283] = 1283, + [1281] = 1252, + [1282] = 1255, + [1283] = 1033, [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, + [1285] = 1220, + [1286] = 701, + [1287] = 1208, + [1288] = 1276, + [1289] = 1036, [1290] = 1290, [1291] = 1291, [1292] = 1292, - [1293] = 1293, - [1294] = 1294, + [1293] = 1291, + [1294] = 1291, [1295] = 1295, - [1296] = 1296, + [1296] = 1291, [1297] = 1297, - [1298] = 1295, + [1298] = 1298, [1299] = 1299, [1300] = 1300, [1301] = 1301, @@ -4552,16 +4675,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1304] = 1304, [1305] = 1305, [1306] = 1306, - [1307] = 1295, - [1308] = 1308, - [1309] = 1309, - [1310] = 1302, - [1311] = 1295, - [1312] = 1302, + [1307] = 1307, + [1308] = 1307, + [1309] = 1307, + [1310] = 1310, + [1311] = 1311, + [1312] = 1312, [1313] = 1313, - [1314] = 1295, - [1315] = 1295, - [1316] = 1302, + [1314] = 1297, + [1315] = 1315, + [1316] = 1316, [1317] = 1317, [1318] = 1318, [1319] = 1319, @@ -4570,49 +4693,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1322] = 1322, [1323] = 1323, [1324] = 1324, - [1325] = 1268, + [1325] = 1325, [1326] = 1326, [1327] = 1327, [1328] = 1328, [1329] = 1329, - [1330] = 1330, - [1331] = 1264, - [1332] = 1332, + [1330] = 1329, + [1331] = 1327, + [1332] = 1327, [1333] = 1333, [1334] = 1334, - [1335] = 1335, - [1336] = 1262, + [1335] = 1327, + [1336] = 1329, [1337] = 1337, - [1338] = 1338, - [1339] = 1339, + [1338] = 1329, + [1339] = 1329, [1340] = 1340, [1341] = 1341, [1342] = 1342, [1343] = 1343, - [1344] = 1344, + [1344] = 1329, [1345] = 1345, [1346] = 1346, [1347] = 1347, - [1348] = 1344, - [1349] = 1344, - [1350] = 1344, + [1348] = 1348, + [1349] = 1349, + [1350] = 1350, [1351] = 1351, [1352] = 1352, [1353] = 1353, [1354] = 1354, - [1355] = 1294, + [1355] = 1355, [1356] = 1356, [1357] = 1357, [1358] = 1358, - [1359] = 1292, + [1359] = 1359, [1360] = 1360, - [1361] = 1356, - [1362] = 1356, - [1363] = 1363, - [1364] = 1356, + [1361] = 1361, + [1362] = 1362, + [1363] = 1305, + [1364] = 1302, [1365] = 1365, - [1366] = 1291, - [1367] = 1293, + [1366] = 1304, + [1367] = 1367, [1368] = 1368, [1369] = 1369, [1370] = 1370, @@ -4621,105 +4744,105 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1373] = 1373, [1374] = 1374, [1375] = 1375, - [1376] = 1372, + [1376] = 1375, [1377] = 1377, [1378] = 1378, - [1379] = 1371, - [1380] = 1372, - [1381] = 1381, + [1379] = 1375, + [1380] = 1380, + [1381] = 1375, [1382] = 1382, - [1383] = 1373, - [1384] = 1371, + [1383] = 1383, + [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1372, - [1388] = 1373, - [1389] = 1389, - [1390] = 1371, - [1391] = 1391, - [1392] = 1373, + [1387] = 1386, + [1388] = 1323, + [1389] = 1321, + [1390] = 1320, + [1391] = 1386, + [1392] = 1322, [1393] = 1393, [1394] = 1394, [1395] = 1395, - [1396] = 1396, + [1396] = 1386, [1397] = 1397, [1398] = 1398, [1399] = 1399, [1400] = 1400, - [1401] = 1401, + [1401] = 1400, [1402] = 1402, - [1403] = 1403, - [1404] = 1404, - [1405] = 1401, - [1406] = 1403, + [1403] = 1398, + [1404] = 1400, + [1405] = 1405, + [1406] = 1406, [1407] = 1407, [1408] = 1408, - [1409] = 1409, + [1409] = 1400, [1410] = 1410, - [1411] = 1411, - [1412] = 1399, - [1413] = 1403, + [1411] = 1398, + [1412] = 1412, + [1413] = 1413, [1414] = 1414, [1415] = 1415, - [1416] = 1399, - [1417] = 1417, - [1418] = 1401, - [1419] = 1401, + [1416] = 1416, + [1417] = 1406, + [1418] = 1407, + [1419] = 1406, [1420] = 1420, [1421] = 1421, - [1422] = 1403, - [1423] = 1423, + [1422] = 1406, + [1423] = 1407, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1399, - [1428] = 1428, + [1427] = 1398, + [1428] = 1407, [1429] = 1429, [1430] = 1430, [1431] = 1431, [1432] = 1432, [1433] = 1433, - [1434] = 1434, + [1434] = 1430, [1435] = 1435, [1436] = 1436, [1437] = 1437, - [1438] = 1434, - [1439] = 1437, - [1440] = 1434, + [1438] = 1438, + [1439] = 1430, + [1440] = 1440, [1441] = 1441, [1442] = 1442, - [1443] = 1443, - [1444] = 1434, - [1445] = 1445, + [1443] = 1437, + [1444] = 1444, + [1445] = 1438, [1446] = 1446, - [1447] = 1437, - [1448] = 1434, + [1447] = 1447, + [1448] = 1430, [1449] = 1449, - [1450] = 1434, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 1437, + [1450] = 1450, + [1451] = 1438, + [1452] = 1437, + [1453] = 1437, + [1454] = 1438, + [1455] = 1455, [1456] = 1456, [1457] = 1457, - [1458] = 1437, + [1458] = 1458, [1459] = 1459, [1460] = 1460, [1461] = 1461, [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1437, - [1466] = 1466, + [1465] = 1465, + [1466] = 1464, [1467] = 1467, - [1468] = 1468, + [1468] = 1465, [1469] = 1469, [1470] = 1470, [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1474, + [1474] = 1465, [1475] = 1475, [1476] = 1476, [1477] = 1477, @@ -4729,537 +4852,597 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 1464, [1485] = 1485, - [1486] = 1486, + [1486] = 1464, [1487] = 1487, [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, + [1489] = 1465, + [1490] = 1464, + [1491] = 1465, [1492] = 1492, - [1493] = 1493, + [1493] = 1465, [1494] = 1494, - [1495] = 1495, + [1495] = 1464, [1496] = 1496, - [1497] = 1492, - [1498] = 1492, + [1497] = 1497, + [1498] = 1498, [1499] = 1499, [1500] = 1500, - [1501] = 1495, - [1502] = 1493, - [1503] = 1496, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, - [1505] = 1492, + [1505] = 1505, [1506] = 1506, - [1507] = 1495, - [1508] = 1496, + [1507] = 1507, + [1508] = 1508, [1509] = 1509, - [1510] = 1493, + [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1496, + [1513] = 1513, [1514] = 1514, - [1515] = 1493, + [1515] = 1515, [1516] = 1516, - [1517] = 1495, + [1517] = 1517, [1518] = 1518, [1519] = 1519, [1520] = 1520, [1521] = 1521, - [1522] = 1519, + [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1524, + [1525] = 1525, [1526] = 1526, [1527] = 1527, - [1528] = 1524, - [1529] = 1529, + [1528] = 1528, + [1529] = 1527, [1530] = 1530, - [1531] = 1531, - [1532] = 1531, + [1531] = 1528, + [1532] = 1532, [1533] = 1533, - [1534] = 1524, + [1534] = 1534, [1535] = 1535, - [1536] = 1521, - [1537] = 1537, - [1538] = 1520, + [1536] = 1536, + [1537] = 1530, + [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, - [1542] = 1542, - [1543] = 1542, - [1544] = 1524, + [1542] = 1527, + [1543] = 1536, + [1544] = 1544, [1545] = 1545, - [1546] = 1546, - [1547] = 1520, - [1548] = 1542, - [1549] = 1549, - [1550] = 1542, - [1551] = 1551, - [1552] = 1552, + [1546] = 1527, + [1547] = 1536, + [1548] = 1528, + [1549] = 1528, + [1550] = 1530, + [1551] = 1536, + [1552] = 1530, [1553] = 1553, [1554] = 1554, [1555] = 1555, - [1556] = 1542, - [1557] = 1531, - [1558] = 1524, - [1559] = 1524, - [1560] = 1560, - [1561] = 1521, - [1562] = 1519, + [1556] = 1556, + [1557] = 1557, + [1558] = 1555, + [1559] = 1559, + [1560] = 1555, + [1561] = 1561, + [1562] = 1561, [1563] = 1563, [1564] = 1564, [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, + [1568] = 1563, + [1569] = 1565, + [1570] = 1561, + [1571] = 1555, [1572] = 1572, - [1573] = 1573, - [1574] = 1570, + [1573] = 1555, + [1574] = 1561, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, + [1578] = 1553, [1579] = 1579, - [1580] = 1579, + [1580] = 1561, [1581] = 1581, [1582] = 1582, - [1583] = 1583, + [1583] = 1563, [1584] = 1584, - [1585] = 1570, - [1586] = 1586, - [1587] = 1587, + [1585] = 1585, + [1586] = 1582, + [1587] = 1561, [1588] = 1588, [1589] = 1589, - [1590] = 1590, + [1590] = 1582, [1591] = 1591, - [1592] = 1575, - [1593] = 1578, + [1592] = 1561, + [1593] = 1565, [1594] = 1594, - [1595] = 1595, + [1595] = 1553, [1596] = 1596, [1597] = 1597, [1598] = 1598, - [1599] = 1567, + [1599] = 1599, [1600] = 1600, [1601] = 1601, - [1602] = 1567, + [1602] = 1602, [1603] = 1603, - [1604] = 1579, - [1605] = 1575, - [1606] = 1575, + [1604] = 1604, + [1605] = 1605, + [1606] = 1606, [1607] = 1607, - [1608] = 1581, - [1609] = 1582, - [1610] = 1610, - [1611] = 1583, + [1608] = 1608, + [1609] = 1609, + [1610] = 1598, + [1611] = 1605, [1612] = 1612, - [1613] = 1581, - [1614] = 1589, - [1615] = 1590, - [1616] = 1591, - [1617] = 1582, - [1618] = 1618, - [1619] = 1583, - [1620] = 1595, - [1621] = 1621, - [1622] = 1622, - [1623] = 1623, - [1624] = 1581, - [1625] = 1582, - [1626] = 1583, - [1627] = 1589, - [1628] = 1590, - [1629] = 1591, - [1630] = 1595, + [1613] = 1602, + [1614] = 1614, + [1615] = 1604, + [1616] = 1605, + [1617] = 1606, + [1618] = 1607, + [1619] = 1608, + [1620] = 1609, + [1621] = 1598, + [1622] = 1606, + [1623] = 1604, + [1624] = 1605, + [1625] = 1612, + [1626] = 1626, + [1627] = 1627, + [1628] = 1606, + [1629] = 1629, + [1630] = 1630, [1631] = 1631, - [1632] = 1575, - [1633] = 1581, - [1634] = 1582, - [1635] = 1583, - [1636] = 1589, - [1637] = 1590, - [1638] = 1591, - [1639] = 1595, - [1640] = 1420, - [1641] = 1618, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1602, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, [1642] = 1642, [1643] = 1643, [1644] = 1644, [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 1589, - [1651] = 1590, - [1652] = 1591, + [1648] = 1607, + [1649] = 1608, + [1650] = 1609, + [1651] = 1598, + [1652] = 1652, [1653] = 1653, - [1654] = 1572, - [1655] = 1578, - [1656] = 1656, + [1654] = 1654, + [1655] = 1655, + [1656] = 1607, [1657] = 1657, - [1658] = 1595, - [1659] = 1618, + [1658] = 1608, + [1659] = 1659, [1660] = 1660, - [1661] = 1581, - [1662] = 1589, - [1663] = 1590, - [1664] = 1582, - [1665] = 1583, - [1666] = 1564, - [1667] = 1621, + [1661] = 1661, + [1662] = 1601, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, + [1666] = 1638, + [1667] = 1667, [1668] = 1668, [1669] = 1669, [1670] = 1670, - [1671] = 1671, - [1672] = 1672, - [1673] = 1595, - [1674] = 1564, - [1675] = 1567, + [1671] = 1663, + [1672] = 1604, + [1673] = 1626, + [1674] = 1605, + [1675] = 1675, [1676] = 1676, - [1677] = 1591, - [1678] = 1575, - [1679] = 1679, - [1680] = 1679, - [1681] = 1681, - [1682] = 1682, - [1683] = 1683, + [1677] = 1606, + [1678] = 1601, + [1679] = 1655, + [1680] = 1680, + [1681] = 1612, + [1682] = 1442, + [1683] = 1638, [1684] = 1684, - [1685] = 1679, - [1686] = 1686, - [1687] = 1684, - [1688] = 1688, - [1689] = 1689, - [1690] = 1690, - [1691] = 1681, - [1692] = 1684, - [1693] = 1693, + [1685] = 1612, + [1686] = 1676, + [1687] = 1607, + [1688] = 1638, + [1689] = 1633, + [1690] = 1608, + [1691] = 1691, + [1692] = 1609, + [1693] = 1663, [1694] = 1694, - [1695] = 1695, - [1696] = 1684, + [1695] = 1602, + [1696] = 1696, [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1698, + [1698] = 1660, + [1699] = 1655, + [1700] = 1697, [1701] = 1701, [1702] = 1702, [1703] = 1703, - [1704] = 1679, - [1705] = 1684, - [1706] = 1698, - [1707] = 1707, - [1708] = 1690, - [1709] = 1703, - [1710] = 1684, - [1711] = 1711, - [1712] = 1712, - [1713] = 1713, + [1704] = 1604, + [1705] = 1605, + [1706] = 1606, + [1707] = 1676, + [1708] = 1708, + [1709] = 1602, + [1710] = 1598, + [1711] = 1607, + [1712] = 1608, + [1713] = 1609, [1714] = 1714, - [1715] = 1679, + [1715] = 1715, [1716] = 1716, - [1717] = 1684, - [1718] = 1718, - [1719] = 1719, - [1720] = 1681, - [1721] = 1693, - [1722] = 1719, - [1723] = 1679, + [1717] = 1626, + [1718] = 1609, + [1719] = 1604, + [1720] = 1602, + [1721] = 1598, + [1722] = 1722, + [1723] = 1723, [1724] = 1724, - [1725] = 1724, + [1725] = 1725, [1726] = 1726, [1727] = 1727, - [1728] = 1698, - [1729] = 1714, - [1730] = 1698, - [1731] = 1697, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1731, [1732] = 1732, - [1733] = 1711, - [1734] = 1734, + [1733] = 1733, + [1734] = 1723, [1735] = 1735, - [1736] = 1703, - [1737] = 1703, - [1738] = 1719, - [1739] = 1681, - [1740] = 1693, - [1741] = 1711, - [1742] = 1724, - [1743] = 1716, - [1744] = 1744, - [1745] = 1714, - [1746] = 1697, - [1747] = 1690, - [1748] = 1748, - [1749] = 1693, - [1750] = 1679, - [1751] = 1724, - [1752] = 1714, - [1753] = 1697, - [1754] = 1754, - [1755] = 1681, - [1756] = 1697, - [1757] = 1711, + [1736] = 1736, + [1737] = 1737, + [1738] = 1728, + [1739] = 1739, + [1740] = 1728, + [1741] = 1726, + [1742] = 1729, + [1743] = 1743, + [1744] = 1727, + [1745] = 1729, + [1746] = 1736, + [1747] = 1736, + [1748] = 1723, + [1749] = 1726, + [1750] = 1750, + [1751] = 1751, + [1752] = 1727, + [1753] = 1729, + [1754] = 1728, + [1755] = 1729, + [1756] = 1756, + [1757] = 1736, [1758] = 1758, - [1759] = 1759, - [1760] = 1703, - [1761] = 1724, - [1762] = 1690, + [1759] = 1756, + [1760] = 1758, + [1761] = 1729, + [1762] = 1736, [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1711, + [1764] = 1732, + [1765] = 1756, + [1766] = 1766, [1767] = 1767, - [1768] = 1768, + [1768] = 1758, [1769] = 1769, - [1770] = 1770, + [1770] = 1722, [1771] = 1771, [1772] = 1772, [1773] = 1773, - [1774] = 1774, - [1775] = 1768, + [1774] = 1723, + [1775] = 1775, [1776] = 1776, - [1777] = 1777, - [1778] = 1769, - [1779] = 1779, + [1777] = 1736, + [1778] = 1735, + [1779] = 1722, [1780] = 1780, - [1781] = 1781, + [1781] = 1756, [1782] = 1782, - [1783] = 998, - [1784] = 1780, - [1785] = 1769, + [1783] = 1736, + [1784] = 1784, + [1785] = 1785, [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1769, - [1790] = 1790, - [1791] = 1791, - [1792] = 1773, - [1793] = 1779, - [1794] = 1794, - [1795] = 986, - [1796] = 991, - [1797] = 1797, - [1798] = 1780, - [1799] = 1799, + [1787] = 1732, + [1788] = 1756, + [1789] = 1766, + [1790] = 1758, + [1791] = 1785, + [1792] = 1769, + [1793] = 1766, + [1794] = 1735, + [1795] = 1795, + [1796] = 1796, + [1797] = 1729, + [1798] = 1766, + [1799] = 1727, [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 1769, - [1806] = 1773, - [1807] = 1807, - [1808] = 1780, - [1809] = 1809, + [1801] = 1769, + [1802] = 1735, + [1803] = 1722, + [1804] = 1722, + [1805] = 1726, + [1806] = 1806, + [1807] = 1769, + [1808] = 1808, + [1809] = 1726, [1810] = 1810, [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, + [1812] = 1758, + [1813] = 1727, + [1814] = 1769, [1815] = 1815, - [1816] = 1774, - [1817] = 1807, + [1816] = 1816, + [1817] = 1817, [1818] = 1818, - [1819] = 1819, + [1819] = 1035, [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, - [1824] = 1801, - [1825] = 1779, - [1826] = 1780, + [1824] = 1824, + [1825] = 1825, + [1826] = 1826, [1827] = 1827, [1828] = 1828, [1829] = 1829, - [1830] = 1830, - [1831] = 1809, + [1830] = 1821, + [1831] = 1831, [1832] = 1832, [1833] = 1833, [1834] = 1834, - [1835] = 1780, + [1835] = 1835, [1836] = 1836, [1837] = 1837, - [1838] = 1838, + [1838] = 1829, [1839] = 1839, - [1840] = 1840, + [1840] = 1823, [1841] = 1841, - [1842] = 1842, - [1843] = 1843, - [1844] = 1840, + [1842] = 1034, + [1843] = 1822, + [1844] = 1844, [1845] = 1845, - [1846] = 1846, - [1847] = 1773, + [1846] = 1826, + [1847] = 1847, [1848] = 1848, - [1849] = 1807, - [1850] = 1842, - [1851] = 1807, + [1849] = 1821, + [1850] = 1850, + [1851] = 1823, [1852] = 1852, [1853] = 1853, - [1854] = 1845, - [1855] = 1818, - [1856] = 1779, + [1854] = 1823, + [1855] = 1837, + [1856] = 1856, [1857] = 1857, - [1858] = 1858, - [1859] = 1859, + [1858] = 1844, + [1859] = 1845, [1860] = 1860, [1861] = 1861, - [1862] = 1768, - [1863] = 1863, - [1864] = 1864, - [1865] = 1865, + [1862] = 1826, + [1863] = 1821, + [1864] = 1861, + [1865] = 1837, [1866] = 1866, - [1867] = 1803, - [1868] = 1801, - [1869] = 1852, - [1870] = 1865, - [1871] = 1809, - [1872] = 1872, + [1867] = 1841, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1871, + [1872] = 1831, [1873] = 1873, - [1874] = 1874, - [1875] = 1875, - [1876] = 1859, - [1877] = 1773, - [1878] = 1818, - [1879] = 1810, + [1874] = 1826, + [1875] = 1835, + [1876] = 1876, + [1877] = 1860, + [1878] = 1844, + [1879] = 1879, [1880] = 1880, - [1881] = 1881, + [1881] = 1853, [1882] = 1882, - [1883] = 1857, - [1884] = 1774, - [1885] = 1776, - [1886] = 1827, - [1887] = 1768, - [1888] = 1888, - [1889] = 1889, - [1890] = 1819, + [1883] = 1835, + [1884] = 1884, + [1885] = 1848, + [1886] = 1845, + [1887] = 1887, + [1888] = 1861, + [1889] = 1866, + [1890] = 1890, [1891] = 1891, - [1892] = 1863, + [1892] = 1892, [1893] = 1893, - [1894] = 1894, - [1895] = 1895, + [1894] = 1826, + [1895] = 1835, [1896] = 1896, - [1897] = 1873, + [1897] = 1832, [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1772, - [1902] = 1810, - [1903] = 1811, - [1904] = 1804, + [1901] = 1893, + [1902] = 1902, + [1903] = 1033, + [1904] = 1904, [1905] = 1905, - [1906] = 1857, - [1907] = 1773, - [1908] = 1908, + [1906] = 1904, + [1907] = 1907, + [1908] = 1852, [1909] = 1909, - [1910] = 1801, - [1911] = 1819, - [1912] = 1912, - [1913] = 1913, - [1914] = 627, - [1915] = 1822, - [1916] = 1916, - [1917] = 1803, - [1918] = 1788, - [1919] = 1919, - [1920] = 1920, - [1921] = 1863, - [1922] = 1861, - [1923] = 1780, - [1924] = 1859, - [1925] = 1840, - [1926] = 1861, + [1910] = 1910, + [1911] = 1911, + [1912] = 1820, + [1913] = 1822, + [1914] = 1914, + [1915] = 1915, + [1916] = 1868, + [1917] = 1899, + [1918] = 1918, + [1919] = 1891, + [1920] = 1832, + [1921] = 1921, + [1922] = 1893, + [1923] = 1829, + [1924] = 1837, + [1925] = 1853, + [1926] = 1926, [1927] = 1927, [1928] = 1928, - [1929] = 1837, - [1930] = 1768, - [1931] = 1931, - [1932] = 1840, - [1933] = 1842, - [1934] = 1861, - [1935] = 1810, - [1936] = 1811, + [1929] = 1887, + [1930] = 1930, + [1931] = 1921, + [1932] = 1932, + [1933] = 1829, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, [1937] = 1937, - [1938] = 1881, - [1939] = 1001, - [1940] = 1779, - [1941] = 1819, - [1942] = 1804, - [1943] = 1943, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1817, + [1943] = 1861, [1944] = 1944, - [1945] = 1858, - [1946] = 1946, - [1947] = 636, - [1948] = 1880, - [1949] = 1949, - [1950] = 1842, - [1951] = 1865, - [1952] = 1952, - [1953] = 1858, + [1945] = 1945, + [1946] = 1821, + [1947] = 1921, + [1948] = 1948, + [1949] = 1866, + [1950] = 1834, + [1951] = 1951, + [1952] = 1866, + [1953] = 1821, [1954] = 1954, - [1955] = 1857, - [1956] = 1881, - [1957] = 1957, - [1958] = 1810, - [1959] = 1881, - [1960] = 1811, - [1961] = 1769, - [1962] = 1810, - [1963] = 1810, - [1964] = 1818, - [1965] = 1965, - [1966] = 1891, + [1955] = 1845, + [1956] = 1956, + [1957] = 1887, + [1958] = 1958, + [1959] = 1832, + [1960] = 1841, + [1961] = 1961, + [1962] = 1869, + [1963] = 1963, + [1964] = 1834, + [1965] = 1834, + [1966] = 1817, [1967] = 1967, - [1968] = 1880, - [1969] = 1898, - [1970] = 1946, - [1971] = 1971, - [1972] = 1972, + [1968] = 1968, + [1969] = 1969, + [1970] = 1860, + [1971] = 1891, + [1972] = 1832, [1973] = 1973, [1974] = 1974, - [1975] = 1779, - [1976] = 1852, - [1977] = 1804, - [1978] = 1880, + [1975] = 1844, + [1976] = 1821, + [1977] = 1826, + [1978] = 1887, [1979] = 1979, - [1980] = 1888, - [1981] = 1981, - [1982] = 1891, - [1983] = 1858, - [1984] = 1900, - [1985] = 1985, - [1986] = 1986, - [1987] = 1865, + [1980] = 1837, + [1981] = 1831, + [1982] = 1832, + [1983] = 1899, + [1984] = 1826, + [1985] = 1891, + [1986] = 1928, + [1987] = 1932, [1988] = 1988, - [1989] = 1809, + [1989] = 1989, [1990] = 1990, - [1991] = 1873, - [1992] = 1946, - [1993] = 1803, - [1994] = 1994, - [1995] = 1888, - [1996] = 1768, - [1997] = 1769, - [1998] = 1861, - [1999] = 1809, + [1991] = 1904, + [1992] = 1992, + [1993] = 1993, + [1994] = 1841, + [1995] = 1995, + [1996] = 1869, + [1997] = 673, + [1998] = 1891, + [1999] = 1999, [2000] = 2000, - [2001] = 1773, - [2002] = 2002, - [2003] = 1888, - [2004] = 1881, - [2005] = 1774, + [2001] = 1860, + [2002] = 1990, + [2003] = 2003, + [2004] = 1835, + [2005] = 1837, [2006] = 2006, - [2007] = 1822, - [2008] = 1946, + [2007] = 2007, + [2008] = 2008, [2009] = 2009, - [2010] = 1788, - [2011] = 1946, + [2010] = 2010, + [2011] = 1932, [2012] = 2012, - [2013] = 2013, - [2014] = 1809, + [2013] = 1887, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 1837, + [2018] = 1841, + [2019] = 1932, + [2020] = 1869, + [2021] = 1990, + [2022] = 1841, + [2023] = 1841, + [2024] = 659, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 1823, + [2029] = 1856, + [2030] = 1969, + [2031] = 2031, + [2032] = 1990, + [2033] = 2033, + [2034] = 1910, + [2035] = 1835, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, + [2041] = 1921, + [2042] = 1848, + [2043] = 1852, + [2044] = 1944, + [2045] = 2045, + [2046] = 1905, + [2047] = 1905, + [2048] = 2048, + [2049] = 1887, + [2050] = 1036, + [2051] = 1989, + [2052] = 1969, + [2053] = 1989, + [2054] = 2040, + [2055] = 2040, + [2056] = 2056, + [2057] = 2057, + [2058] = 1893, + [2059] = 1989, + [2060] = 2060, + [2061] = 2061, + [2062] = 1910, + [2063] = 2040, + [2064] = 2064, + [2065] = 1904, + [2066] = 1817, + [2067] = 1853, + [2068] = 1969, + [2069] = 2069, + [2070] = 1979, + [2071] = 1969, + [2072] = 2072, + [2073] = 2073, + [2074] = 2074, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -5277,9 +5460,9 @@ static const TSMapSlice ts_supertype_map_slices[] = { [sym__declarator] = {.index = 4, .length = 6}, [sym__field_declarator] = {.index = 10, .length = 18}, [sym__type_declarator] = {.index = 28, .length = 19}, - [sym_expression] = {.index = 47, .length = 26}, - [sym_statement] = {.index = 73, .length = 16}, - [sym_type_specifier] = {.index = 89, .length = 7}, + [sym_expression] = {.index = 47, .length = 28}, + [sym_statement] = {.index = 75, .length = 16}, + [sym_type_specifier] = {.index = 91, .length = 8}, }; static const TSSymbol ts_supertype_map_entries[] = { @@ -5356,12 +5539,14 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_parenthesized_expression, sym_pointer_expression, sym_sizeof_expression, + sym_static_assert_expression, sym_string_literal, sym_subscript_expression, sym_true, + sym_typeof_expression, sym_unary_expression, sym_update_expression, - [73] = + [75] = sym_attributed_statement, sym_break_statement, sym_case_statement, @@ -5378,8 +5563,9 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_seh_try_statement, sym_switch_statement, sym_while_statement, - [89] = + [91] = alias_sym_type_identifier, + sym_auto_type, sym_enum_specifier, sym_macro_type_specifier, sym_primitive_type, @@ -5593,43 +5779,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(121); ADVANCE_MAP( - '!', 188, - '"', 287, + '!', 213, + '"', 312, '#', 75, - '%', 205, - '&', 214, - '\'', 278, + '%', 230, + '&', 239, + '\'', 303, '(', 125, ')', 128, - '*', 201, - '+', 196, + '*', 226, + '+', 221, ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 234, + '-', 216, + '.', 279, + '/', 228, + '0', 285, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + 'L', 327, + 'U', 329, + '[', 259, '\\', 2, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, + ']', 260, + '^', 236, + 'u', 331, + '{', 256, + '|', 233, + '}', 257, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 1: if (lookahead == '\n') SKIP(43); @@ -5677,19 +5863,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(108); END_STATE(); case 11: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); END_STATE(); case 12: - if (lookahead == '\n') SKIP(53); + if (lookahead == '\n') SKIP(52); if (lookahead == '\r') SKIP(11); if (lookahead == 'U') ADVANCE(116); if (lookahead == 'u') ADVANCE(108); END_STATE(); case 13: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); END_STATE(); case 14: - if (lookahead == '\n') SKIP(52); + if (lookahead == '\n') SKIP(53); if (lookahead == '\r') SKIP(13); if (lookahead == 'U') ADVANCE(116); if (lookahead == 'u') ADVANCE(108); @@ -5722,41 +5908,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(108); END_STATE(); case 21: - if (lookahead == '\n') SKIP(23); + if (lookahead == '\n') SKIP(48); END_STATE(); case 22: - if (lookahead == '\n') SKIP(23); + if (lookahead == '\n') SKIP(48); if (lookahead == '\r') SKIP(21); + if (lookahead == 'U') ADVANCE(116); + if (lookahead == 'u') ADVANCE(108); END_STATE(); case 23: + if (lookahead == '\n') SKIP(25); + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(25); + if (lookahead == '\r') SKIP(23); + END_STATE(); + case 25: ADVANCE_MAP( - '\n', 130, + '\n', 140, '!', 68, - '%', 204, - '&', 213, - '(', 186, - '*', 200, - '+', 195, - '-', 190, - '/', 202, - '<', 222, + '%', 229, + '&', 238, + '(', 211, + '*', 225, + '+', 220, + '-', 215, + '/', 227, + '<', 247, '=', 69, - '>', 218, + '>', 243, ); - if (lookahead == '\\') SKIP(22); - if (lookahead == '^') ADVANCE(210); - if (lookahead == '|') ADVANCE(209); + if (lookahead == '\\') SKIP(24); + if (lookahead == '^') ADVANCE(235); + if (lookahead == '|') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(23); - END_STATE(); - case 24: - if (lookahead == '\n') SKIP(48); - END_STATE(); - case 25: - if (lookahead == '\n') SKIP(48); - if (lookahead == '\r') SKIP(24); - if (lookahead == 'U') ADVANCE(116); - if (lookahead == 'u') ADVANCE(108); + lookahead == ' ') SKIP(25); END_STATE(); case 26: if (lookahead == '\n') SKIP(56); @@ -5777,55 +5963,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(108); END_STATE(); case 30: - if (lookahead == '\n') SKIP(58); - if (lookahead == '\'') ADVANCE(278); - if (lookahead == '/') ADVANCE(281); - if (lookahead == '\\') ADVANCE(280); + if (lookahead == '\n') SKIP(55); + if (lookahead == '"') ADVANCE(312); + if (lookahead == '/') ADVANCE(313); + if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(282); - if (lookahead != 0) ADVANCE(279); + lookahead == ' ') ADVANCE(316); + if (lookahead != 0) ADVANCE(317); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '\r') ADVANCE(293); + if (lookahead == '\n') ADVANCE(319); + if (lookahead == '\r') ADVANCE(318); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (lookahead != 0) ADVANCE(318); END_STATE(); case 32: - if (lookahead == '\n') SKIP(55); - if (lookahead == '"') ADVANCE(287); - if (lookahead == '/') ADVANCE(288); - if (lookahead == '\\') ADVANCE(31); + if (lookahead == '\n') SKIP(58); + if (lookahead == '\'') ADVANCE(303); + if (lookahead == '/') ADVANCE(306); + if (lookahead == '\\') ADVANCE(305); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(291); - if (lookahead != 0) ADVANCE(292); + lookahead == ' ') ADVANCE(307); + if (lookahead != 0) ADVANCE(304); END_STATE(); case 33: if (lookahead == '\n') ADVANCE(123); if (lookahead == '\r') ADVANCE(37); if (lookahead == '(') ADVANCE(125); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '/') ADVANCE(161); + if (lookahead == '\\') ADVANCE(156); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 34: if (lookahead == '\n') ADVANCE(123); if (lookahead == '\r') ADVANCE(37); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '/') ADVANCE(161); + if (lookahead == '\\') ADVANCE(156); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 35: if (lookahead == '\n') ADVANCE(123); if (lookahead == '\r') ADVANCE(36); - if (lookahead == '(') ADVANCE(186); + if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\f') || @@ -5833,7 +6019,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 36: if (lookahead == '\n') ADVANCE(123); - if (lookahead == '(') ADVANCE(186); + if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\r') || @@ -5841,11 +6027,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 37: if (lookahead == '\n') ADVANCE(123); - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '/') ADVANCE(161); + if (lookahead == '\\') ADVANCE(156); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 38: if (lookahead == '\n') SKIP(59); @@ -5864,376 +6050,376 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(108); END_STATE(); case 42: - if (lookahead == '\r') ADVANCE(323); - if (lookahead == '\\') ADVANCE(317); - if (lookahead != 0) ADVANCE(322); + if (lookahead == '\r') ADVANCE(348); + if (lookahead == '\\') ADVANCE(342); + if (lookahead != 0) ADVANCE(347); END_STATE(); case 43: ADVANCE_MAP( - '!', 188, - '"', 287, + '!', 213, + '"', 312, '#', 75, - '%', 205, - '&', 214, - '\'', 278, - '(', 186, + '%', 230, + '&', 239, + '\'', 303, + '(', 211, ')', 128, - '*', 201, - '+', 196, + '*', 226, + '+', 221, ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 234, + '-', 216, + '.', 279, + '/', 228, + '0', 285, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + 'L', 327, + 'U', 329, + '[', 259, '\\', 2, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, + ']', 260, + '^', 236, + 'u', 331, + '{', 256, + '|', 233, + '}', 257, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 44: ADVANCE_MAP( - '!', 188, - '"', 287, + '!', 213, + '"', 312, '#', 83, - '%', 205, - '&', 214, - '\'', 278, - '(', 186, + '%', 230, + '&', 239, + '\'', 303, + '(', 211, ')', 128, - '*', 201, - '+', 196, + '*', 226, + '+', 221, ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 233, + '-', 216, + '.', 279, + '/', 228, + '0', 285, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + 'L', 327, + 'U', 329, + '[', 258, '\\', 41, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, + ']', 260, + '^', 236, + 'u', 331, + '{', 256, + '|', 233, + '}', 257, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(44); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 45: ADVANCE_MAP( - '!', 187, - '"', 287, + '!', 212, + '"', 312, '#', 75, - '&', 212, - '\'', 278, - '(', 186, - '*', 200, - '+', 197, + '&', 237, + '\'', 303, + '(', 211, + '*', 225, + '+', 222, ',', 127, - '-', 192, + '-', 217, '.', 96, '/', 60, - '0', 260, + '0', 285, ':', 67, - ';', 227, - 'L', 302, - 'U', 304, + ';', 252, + 'L', 327, + 'U', 329, '[', 73, '\\', 6, ']', 74, - 'u', 306, - '{', 231, - '~', 189, + 'u', 331, + '{', 256, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(45); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 46: ADVANCE_MAP( - '!', 187, - '"', 287, - '#', 79, - '&', 212, - '\'', 278, - '(', 186, + '!', 212, + '"', 312, + '#', 76, + '&', 237, + '\'', 303, + '(', 211, ')', 128, - '*', 200, - '+', 197, + '*', 225, + '+', 222, ',', 127, - '-', 192, - '.', 255, + '-', 217, + '.', 280, '/', 60, - '0', 260, - ':', 238, - ';', 227, - '=', 236, - 'L', 302, - 'U', 304, - '[', 234, + '0', 285, + ':', 263, + ';', 252, + '=', 261, + 'L', 327, + 'U', 329, + '[', 259, '\\', 4, - ']', 235, - 'u', 306, - '{', 231, - '}', 232, - '~', 189, + ']', 260, + 'u', 331, + '{', 256, + '}', 257, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(46); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 47: ADVANCE_MAP( - '!', 187, - '"', 287, + '!', 212, + '"', 312, '#', 77, - '&', 212, - '\'', 278, - '(', 186, - '*', 200, - '+', 197, - '-', 192, + '&', 237, + '\'', 303, + '(', 211, + '*', 225, + '+', 222, + '-', 217, '.', 96, '/', 60, - '0', 260, - ';', 227, - 'L', 302, - 'U', 304, + '0', 285, + ';', 252, + 'L', 327, + 'U', 329, '[', 73, '\\', 8, - 'u', 306, - '{', 231, - '~', 189, + 'u', 331, + '{', 256, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(47); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 48: ADVANCE_MAP( - '!', 187, - '\'', 278, - '(', 186, + '!', 212, + '\'', 303, + '(', 211, ')', 128, - '+', 199, - '-', 194, + '+', 224, + '-', 219, '.', 96, '/', 60, - '0', 260, - 'L', 310, - 'U', 311, - '\\', 25, - 'u', 312, - '~', 189, + '0', 285, + 'L', 335, + 'U', 336, + '\\', 22, + 'u', 337, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(48); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 49: ADVANCE_MAP( '!', 68, - '"', 287, + '"', 312, '#', 83, - '%', 205, - '&', 214, - '(', 186, + '%', 230, + '&', 239, + '(', 211, ')', 128, - '*', 201, - '+', 198, + '*', 226, + '+', 223, ',', 127, - '-', 193, - '.', 253, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 303, - 'U', 305, - '[', 234, + '-', 218, + '.', 278, + '/', 228, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + 'L', 328, + 'U', 330, + '[', 259, '\\', 10, - ']', 235, - '^', 211, - 'u', 307, - '|', 208, - '}', 232, + ']', 260, + '^', 236, + 'u', 332, + '|', 233, + '}', 257, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(49); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 50: ADVANCE_MAP( '!', 68, '#', 83, - '%', 205, - '&', 214, - '(', 186, + '%', 230, + '&', 239, + '(', 211, ')', 128, - '*', 201, - '+', 198, + '*', 226, + '+', 223, ',', 127, - '-', 193, - '.', 253, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - '[', 234, + '-', 218, + '.', 278, + '/', 228, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + '[', 259, '\\', 18, - ']', 235, - '^', 211, - '{', 231, - '|', 208, - '}', 232, + ']', 260, + '^', 236, + '{', 256, + '|', 233, + '}', 257, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(50); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 51: ADVANCE_MAP( '!', 68, '#', 83, - '%', 205, - '&', 214, - '(', 186, + '%', 230, + '&', 239, + '(', 211, ')', 128, - '*', 201, - '+', 198, + '*', 226, + '+', 223, ',', 127, - '-', 193, - '.', 252, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - '[', 233, + '-', 218, + '.', 277, + '/', 228, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + '[', 258, '\\', 20, ']', 74, - '^', 211, - '|', 208, - '}', 232, + '^', 236, + '|', 233, + '}', 257, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(51); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 52: ADVANCE_MAP( '!', 68, - '#', 80, - '%', 204, - '&', 213, - '(', 186, + '#', 78, + '%', 230, + '&', 239, + '(', 211, ')', 128, - '*', 200, - '+', 195, + '*', 226, + '+', 223, ',', 127, - '-', 190, - '/', 202, - ';', 227, - '<', 222, - '=', 237, - '>', 218, - '[', 234, - '\\', 14, - '^', 210, - '{', 231, - '|', 209, - '}', 232, + '-', 218, + '.', 278, + '/', 228, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + '[', 259, + '\\', 12, + '^', 236, + '{', 256, + '|', 233, + '}', 257, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(52); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 53: ADVANCE_MAP( '!', 68, - '#', 76, - '%', 205, - '&', 214, - '(', 186, + '#', 80, + '%', 229, + '&', 238, + '(', 211, ')', 128, - '*', 201, - '+', 198, + '*', 225, + '+', 220, ',', 127, - '-', 193, - '.', 253, - '/', 203, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - '[', 234, - '\\', 12, - '^', 211, - '{', 231, - '|', 208, - '}', 232, + '-', 215, + '/', 227, + ';', 252, + '<', 247, + '=', 262, + '>', 243, + '[', 259, + '\\', 14, + '^', 235, + '{', 256, + '|', 234, + '}', 257, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(53); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 54: - if (lookahead == '"') ADVANCE(287); + if (lookahead == '"') ADVANCE(312); if (lookahead == '/') ADVANCE(60); if (lookahead == '<') ADVANCE(70); - if (lookahead == 'L') ADVANCE(303); - if (lookahead == 'U') ADVANCE(305); + if (lookahead == 'L') ADVANCE(328); + if (lookahead == 'U') ADVANCE(330); if (lookahead == '\\') ADVANCE(29); - if (lookahead == 'u') ADVANCE(307); + if (lookahead == 'u') ADVANCE(332); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(54); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 55: - if (lookahead == '"') ADVANCE(287); + if (lookahead == '"') ADVANCE(312); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || @@ -6243,29 +6429,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(93); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') ADVANCE(27); - if (lookahead == '}') ADVANCE(232); + if (lookahead == '}') ADVANCE(257); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(56); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 57: - if (lookahead == '#') ADVANCE(78); + if (lookahead == '#') ADVANCE(79); if (lookahead == '/') ADVANCE(60); if (lookahead == '[') ADVANCE(73); if (lookahead == '\\') ADVANCE(16); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(57); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 58: - if (lookahead == '\'') ADVANCE(278); + if (lookahead == '\'') ADVANCE(303); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') ADVANCE(31); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(58); END_STATE(); case 59: - if (lookahead == '(') ADVANCE(186); + if (lookahead == '(') ADVANCE(211); if (lookahead == '/') ADVANCE(60); if (lookahead == '\\') SKIP(39); if (('\t' <= lookahead && lookahead <= '\r') || @@ -6273,11 +6459,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 60: if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); + if (lookahead == '/') ADVANCE(347); END_STATE(); case 61: if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(315); + if (lookahead == '/') ADVANCE(340); if (lookahead != 0) ADVANCE(62); END_STATE(); case 62: @@ -6286,42 +6472,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 63: if (lookahead == '*') ADVANCE(61); - if (lookahead != 0) ADVANCE(144); + if (lookahead != 0) ADVANCE(154); END_STATE(); case 64: if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (lookahead == '0') ADVANCE(283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(284); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); END_STATE(); case 65: if (lookahead == '.') ADVANCE(126); END_STATE(); case 66: - if (lookahead == '/') ADVANCE(151); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '/') ADVANCE(161); + if (lookahead == '\\') ADVANCE(156); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(66); - if (lookahead != 0) ADVANCE(153); + if (lookahead != 0) ADVANCE(163); END_STATE(); case 67: - if (lookahead == ':') ADVANCE(228); + if (lookahead == ':') ADVANCE(253); END_STATE(); case 68: - if (lookahead == '=') ADVANCE(216); + if (lookahead == '=') ADVANCE(241); END_STATE(); case 69: - if (lookahead == '=') ADVANCE(215); + if (lookahead == '=') ADVANCE(240); END_STATE(); case 70: - if (lookahead == '>') ADVANCE(300); + if (lookahead == '>') ADVANCE(325); if (lookahead == '\\') ADVANCE(71); if (lookahead != 0 && lookahead != '\n') ADVANCE(70); END_STATE(); case 71: - if (lookahead == '>') ADVANCE(301); + if (lookahead == '>') ADVANCE(326); if (lookahead == '\\') ADVANCE(71); if (lookahead != 0 && lookahead != '\n') ADVANCE(70); @@ -6331,68 +6517,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(108); END_STATE(); case 73: - if (lookahead == '[') ADVANCE(229); + if (lookahead == '[') ADVANCE(254); END_STATE(); case 74: - if (lookahead == ']') ADVANCE(230); + if (lookahead == ']') ADVANCE(255); END_STATE(); case 75: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'i') ADVANCE(182); + if (lookahead == 'w') ADVANCE(165); if (lookahead == '\t' || lookahead == ' ') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 76: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(180); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'i') ADVANCE(182); + if (lookahead == 'w') ADVANCE(165); if (lookahead == '\t' || lookahead == ' ') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(182); - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'i') ADVANCE(182); + if (lookahead == 'w') ADVANCE(165); if (lookahead == '\t' || lookahead == ' ') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 78: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'e') ADVANCE(182); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'i') ADVANCE(183); 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(210); END_STATE(); case 79: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'i') ADVANCE(183); 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(210); END_STATE(); case 80: - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'i') ADVANCE(183); 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(210); END_STATE(); case 81: if (lookahead == 'd') ADVANCE(92); @@ -6406,7 +6596,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(83); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(135); + if (lookahead == 'e') ADVANCE(145); END_STATE(); case 85: if (lookahead == 'e') ADVANCE(89); @@ -6415,16 +6605,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(90); END_STATE(); case 87: - if (lookahead == 'f') ADVANCE(137); + if (lookahead == 'f') ADVANCE(147); END_STATE(); case 88: - if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'f') ADVANCE(141); END_STATE(); case 89: - if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'f') ADVANCE(149); END_STATE(); case 90: - if (lookahead == 'f') ADVANCE(141); + if (lookahead == 'f') ADVANCE(151); END_STATE(); case 91: if (lookahead == 'i') ADVANCE(87); @@ -6434,57 +6624,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(88); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'i') ADVANCE(183); if (lookahead == '\t' || lookahead == ' ') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 94: if (lookahead == 'l') ADVANCE(91); if (lookahead == 'n') ADVANCE(81); END_STATE(); case 95: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); case 96: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); case 97: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); END_STATE(); case 98: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(314); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(339); END_STATE(); case 99: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(290); END_STATE(); case 100: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); END_STATE(); case 101: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(288); END_STATE(); case 102: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(293); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); END_STATE(); case 103: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(299); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(324); END_STATE(); case 104: if (('0' <= lookahead && lookahead <= '9') || @@ -6558,83 +6748,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 118: if (lookahead != 0 && - lookahead != '*') ADVANCE(153); + lookahead != '*') ADVANCE(163); END_STATE(); case 119: if (eof) ADVANCE(121); ADVANCE_MAP( - '!', 188, - '"', 287, + '!', 213, + '"', 312, '#', 75, - '%', 205, - '&', 214, - '\'', 278, - '(', 186, + '%', 230, + '&', 239, + '\'', 303, + '(', 211, ')', 128, - '*', 201, - '+', 196, + '*', 226, + '+', 221, ',', 127, - '-', 191, - '.', 254, - '/', 203, - '0', 260, - ':', 238, - ';', 227, - '<', 221, - '=', 237, - '>', 217, - '?', 239, - 'L', 302, - 'U', 304, - '[', 234, + '-', 216, + '.', 279, + '/', 228, + '0', 285, + ':', 263, + ';', 252, + '<', 246, + '=', 262, + '>', 242, + '?', 264, + 'L', 327, + 'U', 329, + '[', 259, '\\', 2, - ']', 235, - '^', 211, - 'u', 306, - '{', 231, - '|', 208, - '}', 232, - '~', 189, + ']', 260, + '^', 236, + 'u', 331, + '{', 256, + '|', 233, + '}', 257, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(119); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 120: if (eof) ADVANCE(121); ADVANCE_MAP( - '!', 187, - '"', 287, - '#', 79, - '&', 212, - '\'', 278, - '(', 186, + '!', 212, + '"', 312, + '#', 76, + '&', 237, + '\'', 303, + '(', 211, ')', 128, - '*', 200, - '+', 197, + '*', 225, + '+', 222, ',', 127, - '-', 192, - '.', 255, + '-', 217, + '.', 280, '/', 60, - '0', 260, - ':', 238, - ';', 227, - '=', 236, - 'L', 302, - 'U', 304, - '[', 234, + '0', 285, + ':', 263, + ';', 252, + '=', 261, + 'L', 327, + 'U', 329, + '[', 259, '\\', 4, - ']', 235, - 'u', 306, - '{', 231, - '}', 232, - '~', 189, + ']', 260, + 'u', 331, + '{', 256, + '}', 257, + '~', 214, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(120); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(314); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(339); END_STATE(); case 121: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6644,7 +6834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 123: ACCEPT_TOKEN(aux_sym_preproc_include_token2); @@ -6654,7 +6844,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 125: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -6669,1336 +6859,1537 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 129: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(164); - if (lookahead == 'n') ADVANCE(158); + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(130); + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); case 131: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\r') ADVANCE(348); + if (lookahead == '\\') ADVANCE(131); + if (lookahead != 0) ADVANCE(132); END_STATE(); case 132: + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead == '\r') ADVANCE(347); + if (lookahead == '\\') ADVANCE(131); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(132); + END_STATE(); + case 133: + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead == '*') ADVANCE(135); + if (lookahead == '/') ADVANCE(132); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(137); + END_STATE(); + case 134: + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(62); + if (lookahead != 0) ADVANCE(135); + END_STATE(); + case 135: + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead == '*') ADVANCE(134); + if (lookahead == '\n' || + lookahead == '\r') ADVANCE(62); + if (lookahead != 0) ADVANCE(135); + END_STATE(); + case 136: + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead == '/') ADVANCE(133); + if (lookahead == '\\') ADVANCE(137); + if (lookahead == '\t' || + lookahead == 0x0b || + lookahead == '\f' || + lookahead == ' ') ADVANCE(136); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(137); + END_STATE(); + case 137: + ACCEPT_TOKEN(aux_sym_preproc_errwarn_token3); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(137); + END_STATE(); + case 138: + ACCEPT_TOKEN(aux_sym_preproc_embed_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 139: + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(178); + if (lookahead == 'n') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(140); + END_STATE(); + case 141: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + END_STATE(); + case 142: 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(210); END_STATE(); - case 133: + case 143: 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(210); END_STATE(); - case 134: + case 144: 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(210); END_STATE(); - case 135: + case 145: ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); - case 136: + case 146: 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(210); END_STATE(); - case 137: + case 147: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); if (lookahead == 'd') ADVANCE(85); if (lookahead == 'n') ADVANCE(82); END_STATE(); - case 138: + case 148: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(166); - if (lookahead == 'n') ADVANCE(159); + if (lookahead == 'd') ADVANCE(180); + if (lookahead == 'n') ADVANCE(172); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 139: + case 149: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); - case 140: + case 150: 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(210); END_STATE(); - case 141: + case 151: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); - case 142: + case 152: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 143: + case 153: 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); + if (lookahead == '*') ADVANCE(153); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '\\') ADVANCE(159); + if (lookahead != 0) ADVANCE(154); END_STATE(); - case 144: + case 154: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(62); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\\') ADVANCE(159); + if (lookahead != 0) ADVANCE(154); END_STATE(); - case 145: + case 155: 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); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '\r') ADVANCE(341); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(343); + if (lookahead != 0) ADVANCE(345); END_STATE(); - case 146: + case 156: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') SKIP(66); - if (lookahead == '\r') ADVANCE(147); + if (lookahead == '\r') ADVANCE(157); if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\\') ADVANCE(158); + if (lookahead != 0) ADVANCE(163); END_STATE(); - case 147: + case 157: 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 == '\\') ADVANCE(158); + if (lookahead != 0) ADVANCE(163); END_STATE(); - case 148: + case 158: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(154); + if (lookahead == '\r') ADVANCE(164); if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\\') ADVANCE(158); + if (lookahead != 0) ADVANCE(163); END_STATE(); - case 149: + case 159: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(152); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '\r') ADVANCE(162); + if (lookahead == '*') ADVANCE(153); if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\\') ADVANCE(159); + if (lookahead != 0) ADVANCE(154); END_STATE(); - case 150: + case 160: 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 == '\r') ADVANCE(346); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(343); + if (lookahead != 0) ADVANCE(345); END_STATE(); - case 151: + case 161: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(144); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(148); + if (lookahead == '*') ADVANCE(154); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(158); if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); + lookahead != '\n') ADVANCE(163); END_STATE(); - case 152: + case 162: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(143); + if (lookahead == '*') ADVANCE(153); if (lookahead == '/') ADVANCE(63); - if (lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(144); + if (lookahead == '\\') ADVANCE(159); + if (lookahead != 0) ADVANCE(154); END_STATE(); - case 153: + case 163: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); + if (lookahead == '\\') ADVANCE(158); if (lookahead != 0 && - lookahead != '\n') ADVANCE(153); + lookahead != '\n') ADVANCE(163); END_STATE(); - case 154: + case 164: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') ADVANCE(118); - if (lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(153); + if (lookahead == '\\') ADVANCE(158); + if (lookahead != 0) ADVANCE(163); END_STATE(); - case 155: + case 165: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(181); + if (lookahead == 'a') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 156: + case 166: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(179); + if (lookahead == 'b') ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 157: + case 167: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(163); + if (lookahead == 'c') ADVANCE(198); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 158: + case 168: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(165); + if (lookahead == 'd') ADVANCE(138); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 159: + case 169: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(167); + if (lookahead == 'd') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 160: + case 170: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 'd') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 161: + case 171: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'd') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 162: + case 172: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 173: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 174: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 175: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 163: + case 176: ACCEPT_TOKEN(sym_preproc_directive); if (lookahead == 'e') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 164: + case 177: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 165: + case 178: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'e') ADVANCE(187); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 166: + case 179: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'e') ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 167: + case 180: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'e') ADVANCE(189); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 168: + case 181: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(129); - if (lookahead == 'n') ADVANCE(155); + if (lookahead == 'e') ADVANCE(190); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 169: + case 182: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(129); + if (lookahead == 'f') ADVANCE(139); + if (lookahead == 'n') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 170: + case 183: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(177); + if (lookahead == 'f') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 171: + case 184: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(138); + if (lookahead == 'f') ADVANCE(193); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 172: + case 185: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(132); + if (lookahead == 'f') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 173: + case 186: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(133); + 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(210); END_STATE(); - case 174: + case 187: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(134); + if (lookahead == 'f') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 175: + case 188: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(140); + 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(210); END_STATE(); - case 176: + case 189: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(142); + if (lookahead == 'f') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 177: + case 190: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(183); + if (lookahead == 'f') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 178: + case 191: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(171); - if (lookahead == 's') ADVANCE(161); + if (lookahead == 'g') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 179: + case 192: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(172); + if (lookahead == 'i') ADVANCE(185); + if (lookahead == 's') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 180: + case 193: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(178); - if (lookahead == 'n') ADVANCE(156); + if (lookahead == 'i') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 181: + case 194: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(184); + if (lookahead == 'i') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 182: + case 195: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(156); + if (lookahead == 'i') ADVANCE(202); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 183: + case 196: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'l') ADVANCE(192); + if (lookahead == 'm') ADVANCE(166); + if (lookahead == 'n') ADVANCE(169); + if (lookahead == 'r') ADVANCE(206); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 184: + case 197: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(157); + if (lookahead == 'l') ADVANCE(192); + if (lookahead == 'n') ADVANCE(169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 185: + case 198: ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); END_STATE(); - case 186: + case 199: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'm') ADVANCE(166); + if (lookahead == 'n') ADVANCE(169); + if (lookahead == 'r') ADVANCE(206); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 200: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'm') ADVANCE(166); + if (lookahead == 'r') ADVANCE(206); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 201: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 202: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 203: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 204: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 205: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'o') ADVANCE(208); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 206: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'r') ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 207: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'r') ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 208: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'r') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 209: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 210: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(210); + END_STATE(); + case 211: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 187: + case 212: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 188: + case 213: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(216); + if (lookahead == '=') ADVANCE(241); END_STATE(); - case 189: + case 214: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 190: + case 215: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 191: + case 216: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(250); + if (lookahead == '-') ADVANCE(275); if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(256); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == '0') ADVANCE(285); + if (lookahead == '=') ADVANCE(269); + if (lookahead == '>') ADVANCE(281); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 192: + case 217: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(250); + if (lookahead == '-') ADVANCE(275); if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == '0') ADVANCE(285); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 193: + case 218: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(250); - if (lookahead == '=') ADVANCE(244); - if (lookahead == '>') ADVANCE(256); + if (lookahead == '-') ADVANCE(275); + if (lookahead == '=') ADVANCE(269); + if (lookahead == '>') ADVANCE(281); END_STATE(); - case 194: + case 219: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == '0') ADVANCE(285); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 195: + case 220: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 196: + case 221: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(251); + if (lookahead == '+') ADVANCE(276); if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (lookahead == '=') ADVANCE(243); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == '0') ADVANCE(285); + if (lookahead == '=') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 197: + case 222: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(251); + if (lookahead == '+') ADVANCE(276); if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == '0') ADVANCE(285); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 198: + case 223: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(251); - if (lookahead == '=') ADVANCE(243); + if (lookahead == '+') ADVANCE(276); + if (lookahead == '=') ADVANCE(268); END_STATE(); - case 199: + case 224: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(96); - if (lookahead == '0') ADVANCE(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (lookahead == '0') ADVANCE(285); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 200: + case 225: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 201: + case 226: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(240); + if (lookahead == '=') ADVANCE(265); END_STATE(); - case 202: + case 227: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); + if (lookahead == '/') ADVANCE(347); END_STATE(); - case 203: + case 228: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); - if (lookahead == '=') ADVANCE(241); + if (lookahead == '/') ADVANCE(347); + if (lookahead == '=') ADVANCE(266); END_STATE(); - case 204: + case 229: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 205: + case 230: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(242); + if (lookahead == '=') ADVANCE(267); END_STATE(); - case 206: + case 231: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 207: + case 232: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 208: + case 233: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(249); - if (lookahead == '|') ADVANCE(206); + if (lookahead == '=') ADVANCE(274); + if (lookahead == '|') ADVANCE(231); END_STATE(); - case 209: + case 234: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(206); + if (lookahead == '|') ADVANCE(231); END_STATE(); - case 210: + case 235: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 211: + case 236: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(248); + if (lookahead == '=') ADVANCE(273); END_STATE(); - case 212: + case 237: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 213: + case 238: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(207); + if (lookahead == '&') ADVANCE(232); END_STATE(); - case 214: + case 239: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(207); - if (lookahead == '=') ADVANCE(247); + if (lookahead == '&') ADVANCE(232); + if (lookahead == '=') ADVANCE(272); END_STATE(); - case 215: + case 240: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 216: + case 241: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 217: + case 242: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(226); + if (lookahead == '=') ADVANCE(244); + if (lookahead == '>') ADVANCE(251); END_STATE(); - case 218: + case 243: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(219); - if (lookahead == '>') ADVANCE(225); + if (lookahead == '=') ADVANCE(244); + if (lookahead == '>') ADVANCE(250); END_STATE(); - case 219: + case 244: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 220: + case 245: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 221: + case 246: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(224); - if (lookahead == '=') ADVANCE(220); + if (lookahead == '<') ADVANCE(249); + if (lookahead == '=') ADVANCE(245); END_STATE(); - case 222: + case 247: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(223); - if (lookahead == '=') ADVANCE(220); + if (lookahead == '<') ADVANCE(248); + if (lookahead == '=') ADVANCE(245); END_STATE(); - case 223: + case 248: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 224: + case 249: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(245); + if (lookahead == '=') ADVANCE(270); END_STATE(); - case 225: + case 250: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 226: + case 251: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(246); + if (lookahead == '=') ADVANCE(271); END_STATE(); - case 227: + case 252: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 228: + case 253: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 229: + case 254: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 230: + case 255: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 231: + case 256: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 232: + case 257: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 233: + case 258: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 234: + case 259: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(229); + if (lookahead == '[') ADVANCE(254); END_STATE(); - case 235: + case 260: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 236: + case 261: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 237: + case 262: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(215); + if (lookahead == '=') ADVANCE(240); END_STATE(); - case 238: + case 263: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 239: + case 264: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 240: + case 265: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 241: + case 266: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 242: + case 267: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 243: + case 268: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 244: + case 269: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 245: + case 270: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 246: + case 271: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 247: + case 272: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 248: + case 273: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 249: + case 274: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 250: + case 275: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 251: + case 276: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 252: + case 277: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 253: + case 278: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(65); END_STATE(); - case 254: + case 279: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); - case 255: + case 280: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(257); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); - case 256: + case 281: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 257: + case 282: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(96); 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(295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(298); END_STATE(); - case 258: + case 283: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 97, - '.', 271, - 'B', 267, - 'b', 267, - 'E', 266, - 'e', 266, - 'P', 270, - 'p', 270, + '.', 296, + 'B', 292, + 'b', 292, + 'E', 291, + 'e', 291, + 'P', 295, + 'p', 295, '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, + 'A', 293, + 'C', 293, + 'a', 293, + 'c', 293, + 'D', 293, + 'F', 293, + 'd', 293, + 'f', 293, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); END_STATE(); - case 259: + case 284: 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, + '.', 296, + 'E', 291, + 'e', 291, + 'P', 295, + 'p', 295, + 'A', 293, + 'C', 293, + 'a', 293, + 'c', 293, + 'B', 293, + 'D', 293, + 'F', 293, + 'b', 293, + 'd', 293, + 'f', 293, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); END_STATE(); - case 260: + case 285: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 95, - '.', 271, - 'B', 269, - 'b', 269, + '.', 296, + 'B', 294, + 'b', 294, '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, + 'E', 295, + 'P', 295, + 'e', 295, + 'p', 295, + 'D', 298, + 'F', 298, + 'L', 298, + 'U', 298, + 'W', 298, + 'd', 298, + 'f', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 261: + case 286: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 95, - '.', 271, - 'B', 272, - 'b', 272, + '.', 296, + 'B', 297, + 'b', 297, '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, + 'E', 295, + 'P', 295, + 'e', 295, + 'p', 295, + 'D', 298, + 'F', 298, + 'L', 298, + 'U', 298, + 'W', 298, + 'd', 298, + 'f', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(262); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); END_STATE(); - case 262: + case 287: ACCEPT_TOKEN(sym_number_literal); if (lookahead == '\'') ADVANCE(95); - if (lookahead == '.') ADVANCE(271); + if (lookahead == '.') ADVANCE(296); 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(295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(298); END_STATE(); - case 263: + case 288: 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, + 'B', 288, + 'D', 288, + 'F', 288, + 'b', 288, + 'd', 288, + 'f', 288, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(288); END_STATE(); - case 264: + case 289: 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, + 'E', 289, + 'e', 289, + 'P', 295, + 'p', 295, + 'B', 290, + 'D', 290, + 'F', 290, + 'b', 290, + 'd', 290, + 'f', 290, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(290); END_STATE(); - case 265: + case 290: 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, + 'E', 289, + 'e', 289, + 'P', 295, + 'p', 295, + 'B', 290, + 'D', 290, + 'F', 290, + 'b', 290, + 'd', 290, + 'f', 290, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(290); END_STATE(); - case 266: + case 291: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( '\'', 100, - '.', 271, + '.', 296, '+', 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, + 'E', 291, + 'e', 291, + 'P', 295, + 'p', 295, + 'B', 293, + 'D', 293, + 'F', 293, + 'b', 293, + 'd', 293, + 'f', 293, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(293); END_STATE(); - case 267: + case 292: 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, + '.', 296, + 'E', 291, + 'e', 291, + 'P', 295, + 'p', 295, + 'A', 293, + 'C', 293, + 'a', 293, + 'c', 293, + 'B', 293, + 'D', 293, + 'F', 293, + 'b', 293, + 'd', 293, + 'f', 293, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(259); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(284); END_STATE(); - case 268: + case 293: 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, + '.', 296, + 'E', 291, + 'e', 291, + 'P', 295, + 'p', 295, + 'B', 293, + 'D', 293, + 'F', 293, + 'b', 293, + 'd', 293, + 'f', 293, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(268); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(293); END_STATE(); - case 269: + case 294: 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 == '0') ADVANCE(286); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(287); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(298); END_STATE(); - case 270: + case 295: 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, + 'B', 288, + 'D', 288, + 'F', 288, + 'b', 288, + 'd', 288, + 'f', 288, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(263); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(288); END_STATE(); - case 271: + case 296: 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', 289, + 'e', 289, + 'P', 295, + 'p', 295, + 'B', 290, + 'D', 290, + 'F', 290, + 'b', 290, + 'd', 290, + 'f', 290, + 'L', 298, + 'U', 298, + 'W', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'C') || - ('a' <= lookahead && lookahead <= 'c')) ADVANCE(265); + ('a' <= lookahead && lookahead <= 'c')) ADVANCE(290); END_STATE(); - case 272: + case 297: 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(287); + if (set_contains(sym_number_literal_character_set_13, 13, lookahead)) ADVANCE(298); END_STATE(); - case 273: + case 298: 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', 298, + 'D', 298, + 'F', 298, + 'L', 298, + 'U', 298, + 'W', 298, + 'b', 298, + 'd', 298, + 'f', 298, + 'l', 298, + 'u', 298, + 'w', 298, ); END_STATE(); - case 274: + case 299: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 275: + case 300: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 276: + case 301: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 277: + case 302: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 278: + case 303: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 279: + case 304: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 280: + case 305: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '\r') ADVANCE(293); + if (lookahead == '\n') ADVANCE(319); + if (lookahead == '\r') ADVANCE(318); 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 (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); + if (lookahead != 0) ADVANCE(318); END_STATE(); - case 281: + case 306: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '*') ADVANCE(62); - if (lookahead == '/') ADVANCE(322); + if (lookahead == '/') ADVANCE(347); END_STATE(); - case 282: + case 307: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '\\') ADVANCE(31); END_STATE(); - case 283: + case 308: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 284: + case 309: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 285: + case 310: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 286: + case 311: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 287: + case 312: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 288: + case 313: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(290); - if (lookahead == '/') ADVANCE(292); + if (lookahead == '*') ADVANCE(315); + if (lookahead == '/') ADVANCE(317); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(292); + lookahead != '\\') ADVANCE(317); END_STATE(); - case 289: + case 314: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(289); - if (lookahead == '/') ADVANCE(292); + if (lookahead == '*') ADVANCE(314); + if (lookahead == '/') ADVANCE(317); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(290); + lookahead != '\\') ADVANCE(315); END_STATE(); - case 290: + case 315: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(289); + if (lookahead == '*') ADVANCE(314); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(290); + lookahead != '\\') ADVANCE(315); END_STATE(); - case 291: + case 316: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(288); + if (lookahead == '/') ADVANCE(313); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(291); + lookahead == ' ') ADVANCE(316); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(292); + lookahead != '\\') ADVANCE(317); END_STATE(); - case 292: + case 317: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(292); + lookahead != '\\') ADVANCE(317); END_STATE(); - case 293: + case 318: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 294: + case 319: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(31); END_STATE(); - case 295: + case 320: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(293); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(318); END_STATE(); - case 296: + case 321: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(320); END_STATE(); - case 297: + case 322: 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(318); END_STATE(); - case 298: + case 323: 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(322); END_STATE(); - case 299: + case 324: 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(323); END_STATE(); - case 300: + case 325: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 301: + case 326: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(300); + if (lookahead == '>') ADVANCE(325); if (lookahead == '\\') ADVANCE(71); if (lookahead != 0 && lookahead != '\n') ADVANCE(70); END_STATE(); - case 302: + case 327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '\'') ADVANCE(274); + if (lookahead == '"') ADVANCE(308); + if (lookahead == '\'') ADVANCE(299); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 303: + case 328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(283); + if (lookahead == '"') ADVANCE(308); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 304: + case 329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(285); - if (lookahead == '\'') ADVANCE(276); + if (lookahead == '"') ADVANCE(310); + if (lookahead == '\'') ADVANCE(301); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 305: + case 330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(285); + if (lookahead == '"') ADVANCE(310); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 306: + case 331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '8') ADVANCE(308); + if (lookahead == '"') ADVANCE(309); + if (lookahead == '\'') ADVANCE(300); + if (lookahead == '8') ADVANCE(333); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 307: + case 332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(284); - if (lookahead == '8') ADVANCE(309); + if (lookahead == '"') ADVANCE(309); + if (lookahead == '8') ADVANCE(334); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 308: + case 333: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(286); - if (lookahead == '\'') ADVANCE(277); + if (lookahead == '"') ADVANCE(311); + if (lookahead == '\'') ADVANCE(302); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 309: + case 334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(286); + if (lookahead == '"') ADVANCE(311); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 310: + case 335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(274); + if (lookahead == '\'') ADVANCE(299); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 311: + case 336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(276); + if (lookahead == '\'') ADVANCE(301); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 312: + case 337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(275); - if (lookahead == '8') ADVANCE(313); + if (lookahead == '\'') ADVANCE(300); + if (lookahead == '8') ADVANCE(338); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 313: + case 338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(277); + if (lookahead == '\'') ADVANCE(302); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 314: + case 339: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(72); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(339); END_STATE(); - case 315: + case 340: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 316: + case 341: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(322); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(320); + if (lookahead == '\n') ADVANCE(347); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(160); + if (lookahead != 0) ADVANCE(345); END_STATE(); - case 317: + case 342: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(323); - if (lookahead == '\\') ADVANCE(317); - if (lookahead != 0) ADVANCE(322); + if (lookahead == '\r') ADVANCE(348); + if (lookahead == '\\') ADVANCE(342); + if (lookahead != 0) ADVANCE(347); END_STATE(); - case 318: + case 343: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(321); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(318); - if (lookahead != 0) ADVANCE(320); + if (lookahead == '\r') ADVANCE(346); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(343); + if (lookahead != 0) ADVANCE(345); END_STATE(); - case 319: + case 344: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '*') ADVANCE(347); + if (lookahead == '\\') ADVANCE(155); if (lookahead != 0 && - lookahead != '\n') ADVANCE(320); + lookahead != '\n') ADVANCE(345); END_STATE(); - case 320: + case 345: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(160); if (lookahead != 0 && - lookahead != '\n') ADVANCE(320); + lookahead != '\n') ADVANCE(345); END_STATE(); - case 321: + case 346: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(319); - if (lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(320); + if (lookahead == '/') ADVANCE(344); + if (lookahead == '\\') ADVANCE(160); + if (lookahead != 0) ADVANCE(345); END_STATE(); - case 322: + case 347: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(42); if (lookahead != 0 && - lookahead != '\n') ADVANCE(322); + lookahead != '\n') ADVANCE(347); END_STATE(); - case 323: + case 348: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(42); - if (lookahead != 0) ADVANCE(322); + if (lookahead != 0) ADVANCE(347); END_STATE(); default: return false; @@ -8051,1611 +8442,1771 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(28); END_STATE(); case 5: - if (lookahead == 'A') ADVANCE(29); - if (lookahead == 'G') ADVANCE(30); - if (lookahead == 'N') ADVANCE(31); - if (lookahead == '_') ADVANCE(32); - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'u') ADVANCE(34); + ADVANCE_MAP( + 'A', 29, + 'B', 30, + 'D', 31, + 'F', 32, + 'G', 33, + 'N', 34, + 'S', 35, + '_', 36, + 'a', 37, + 'u', 38, + ); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(35); - if (lookahead == 's') ADVANCE(36); - if (lookahead == 'u') ADVANCE(37); + if (lookahead == 'l') ADVANCE(39); + if (lookahead == 's') ADVANCE(40); + if (lookahead == 'u') ADVANCE(41); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'r') ADVANCE(39); + if (lookahead == 'o') ADVANCE(42); + if (lookahead == 'r') ADVANCE(43); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'h') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); + if (lookahead == 'a') ADVANCE(44); + if (lookahead == 'h') ADVANCE(45); + if (lookahead == 'o') ADVANCE(46); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(43); - if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'e') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(45); - if (lookahead == 'n') ADVANCE(46); - if (lookahead == 'x') ADVANCE(47); + if (lookahead == 'l') ADVANCE(49); + if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'x') ADVANCE(51); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(48); - if (lookahead == 'l') ADVANCE(49); - if (lookahead == 'o') ADVANCE(50); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'l') ADVANCE(53); + if (lookahead == 'o') ADVANCE(54); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'o') ADVANCE(55); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(52); - if (lookahead == 'n') ADVANCE(53); + if (lookahead == 'f') ADVANCE(56); + if (lookahead == 'n') ADVANCE(57); END_STATE(); case 14: - if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'o') ADVANCE(58); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(55); + if (lookahead == 'a') ADVANCE(59); END_STATE(); case 16: - if (lookahead == 'o') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == 'o') ADVANCE(60); + if (lookahead == 'u') ADVANCE(61); END_STATE(); case 17: - if (lookahead == 'f') ADVANCE(58); + if (lookahead == 'f') ADVANCE(62); END_STATE(); case 18: - if (lookahead == 't') ADVANCE(59); + if (lookahead == 't') ADVANCE(63); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'e') ADVANCE(64); END_STATE(); case 20: - if (lookahead == 'h') ADVANCE(61); - if (lookahead == 'i') ADVANCE(62); - if (lookahead == 's') ADVANCE(63); - if (lookahead == 't') ADVANCE(64); - if (lookahead == 'w') ADVANCE(65); + if (lookahead == 'h') ADVANCE(65); + if (lookahead == 'i') ADVANCE(66); + if (lookahead == 's') ADVANCE(67); + if (lookahead == 't') ADVANCE(68); + if (lookahead == 'w') ADVANCE(69); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(66); - if (lookahead == 'r') ADVANCE(67); - if (lookahead == 'y') ADVANCE(68); + if (lookahead == 'h') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); + if (lookahead == 'y') ADVANCE(72); END_STATE(); case 22: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 'n') ADVANCE(70); + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(71); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 24: - if (lookahead == 'h') ADVANCE(72); + if (lookahead == 'h') ADVANCE(76); END_STATE(); case 25: - if (lookahead == 'L') ADVANCE(73); + if (lookahead == 'L') ADVANCE(77); END_STATE(); case 26: - if (lookahead == 'L') ADVANCE(74); + if (lookahead == 'L') ADVANCE(78); END_STATE(); case 27: - if (lookahead == 'U') ADVANCE(75); + if (lookahead == 'U') ADVANCE(79); END_STATE(); case 28: if (lookahead == '\n') SKIP(0); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(76); - if (lookahead == 't') ADVANCE(77); + if (lookahead == 'l') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(78); + if (lookahead == 'i') ADVANCE(82); END_STATE(); case 31: - if (lookahead == 'o') ADVANCE(79); + if (lookahead == 'e') ADVANCE(83); END_STATE(); case 32: - ADVANCE_MAP( - 'a', 80, - 'b', 81, - 'c', 82, - 'd', 83, - 'e', 84, - 'f', 85, - 'i', 86, - 'l', 87, - 'r', 88, - 's', 89, - 't', 90, - 'u', 91, - 'v', 92, - ); + if (lookahead == 'l') ADVANCE(84); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(93); + if (lookahead == 'e') ADVANCE(85); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(94); + if (lookahead == 'o') ADVANCE(86); END_STATE(); case 35: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 't') ADVANCE(87); END_STATE(); case 36: - if (lookahead == 'm') ADVANCE(96); + ADVANCE_MAP( + 'a', 88, + 'b', 89, + 'c', 90, + 'd', 91, + 'e', 92, + 'f', 93, + 'i', 94, + 'l', 95, + 'r', 96, + 's', 97, + 't', 98, + 'u', 99, + 'v', 100, + ); END_STATE(); case 37: - if (lookahead == 't') ADVANCE(97); + if (lookahead == 'l') ADVANCE(101); END_STATE(); case 38: - if (lookahead == 'o') ADVANCE(98); + if (lookahead == 'n') ADVANCE(102); END_STATE(); case 39: - if (lookahead == 'e') ADVANCE(99); + if (lookahead == 'i') ADVANCE(103); END_STATE(); case 40: - if (lookahead == 's') ADVANCE(100); + if (lookahead == 'm') ADVANCE(104); END_STATE(); case 41: - if (lookahead == 'a') ADVANCE(101); + if (lookahead == 't') ADVANCE(105); END_STATE(); case 42: - if (lookahead == 'n') ADVANCE(102); + if (lookahead == 'o') ADVANCE(106); END_STATE(); case 43: - if (lookahead == 'f') ADVANCE(103); + if (lookahead == 'e') ADVANCE(107); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(104); + if (lookahead == 's') ADVANCE(108); END_STATE(); case 45: - if (lookahead == 's') ADVANCE(105); + if (lookahead == 'a') ADVANCE(109); END_STATE(); case 46: - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 'f') ADVANCE(111); END_STATE(); case 48: - if (lookahead == 'l') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(112); END_STATE(); case 49: - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 's') ADVANCE(113); END_STATE(); case 50: - if (lookahead == 'r') ADVANCE(110); + if (lookahead == 'u') ADVANCE(114); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(111); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 53: - if (lookahead == 'l') ADVANCE(112); - if (lookahead == 't') ADVANCE(113); + if (lookahead == 'o') ADVANCE(117); END_STATE(); case 54: - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 'r') ADVANCE(118); END_STATE(); case 55: - if (lookahead == 'x') ADVANCE(115); + if (lookahead == 't') ADVANCE(119); END_STATE(); case 56: - if (lookahead == 'r') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 57: - if (lookahead == 'l') ADVANCE(117); + if (lookahead == 'l') ADVANCE(120); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 58: - if (lookahead == 'f') ADVANCE(118); + if (lookahead == 'n') ADVANCE(122); END_STATE(); case 59: - if (lookahead == 'r') ADVANCE(119); + if (lookahead == 'x') ADVANCE(123); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(120); - if (lookahead == 's') ADVANCE(121); - if (lookahead == 't') ADVANCE(122); + if (lookahead == 'r') ADVANCE(124); END_STATE(); case 61: - if (lookahead == 'o') ADVANCE(123); + if (lookahead == 'l') ADVANCE(125); END_STATE(); case 62: - if (lookahead == 'g') ADVANCE(124); - if (lookahead == 'z') ADVANCE(125); + if (lookahead == 'f') ADVANCE(126); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(126); + if (lookahead == 'r') ADVANCE(127); END_STATE(); case 64: - if (lookahead == 'a') ADVANCE(127); - if (lookahead == 'r') ADVANCE(128); + if (lookahead == 'g') ADVANCE(128); + if (lookahead == 's') ADVANCE(129); + if (lookahead == 't') ADVANCE(130); END_STATE(); case 65: - if (lookahead == 'i') ADVANCE(129); + if (lookahead == 'o') ADVANCE(131); END_STATE(); case 66: - if (lookahead == 'r') ADVANCE(130); + if (lookahead == 'g') ADVANCE(132); + if (lookahead == 'z') ADVANCE(133); END_STATE(); case 67: - if (lookahead == 'u') ADVANCE(131); + if (lookahead == 'i') ADVANCE(134); END_STATE(); case 68: - if (lookahead == 'p') ADVANCE(132); + if (lookahead == 'a') ADVANCE(135); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 69: - if (lookahead == 'n') ADVANCE(133); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(134); - if (lookahead == 's') ADVANCE(135); + if (lookahead == 'r') ADVANCE(138); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 'l') ADVANCE(137); + if (lookahead == 'u') ADVANCE(139); END_STATE(); case 72: - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'p') ADVANCE(140); END_STATE(); case 73: - if (lookahead == 'S') ADVANCE(139); + if (lookahead == 'n') ADVANCE(141); END_STATE(); case 74: - if (lookahead == 'L') ADVANCE(140); + if (lookahead == 'i') ADVANCE(142); + if (lookahead == 's') ADVANCE(143); END_STATE(); case 75: - if (lookahead == 'E') ADVANCE(141); + if (lookahead == 'i') ADVANCE(144); + if (lookahead == 'l') ADVANCE(145); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(142); + if (lookahead == 'i') ADVANCE(146); END_STATE(); case 77: - if (lookahead == 'o') ADVANCE(143); + if (lookahead == 'S') ADVANCE(147); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 'L') ADVANCE(148); END_STATE(); case 79: - if (lookahead == 'n') ADVANCE(145); - if (lookahead == 'r') ADVANCE(146); + if (lookahead == 'E') ADVANCE(149); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(147); - if (lookahead == 's') ADVANCE(148); - if (lookahead == 't') ADVANCE(149); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'o') ADVANCE(151); END_STATE(); case 82: - if (lookahead == 'd') ADVANCE(151); - if (lookahead == 'l') ADVANCE(152); + if (lookahead == 't') ADVANCE(152); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(153); + if (lookahead == 'c') ADVANCE(153); END_STATE(); case 84: - if (lookahead == 'x') ADVANCE(154); + if (lookahead == 'o') ADVANCE(154); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(155); - if (lookahead == 'i') ADVANCE(156); - if (lookahead == 'o') ADVANCE(157); + if (lookahead == 'n') ADVANCE(155); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(158); + if (lookahead == 'n') ADVANCE(156); + if (lookahead == 'r') ADVANCE(157); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(159); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(160); + if (lookahead == 'l') ADVANCE(159); + if (lookahead == 's') ADVANCE(160); + if (lookahead == 't') ADVANCE(161); END_STATE(); case 89: - if (lookahead == 'p') ADVANCE(161); - if (lookahead == 't') ADVANCE(162); + if (lookahead == 'a') ADVANCE(162); END_STATE(); case 90: - if (lookahead == 'h') ADVANCE(163); - if (lookahead == 'r') ADVANCE(164); + if (lookahead == 'd') ADVANCE(163); + if (lookahead == 'l') ADVANCE(164); END_STATE(); case 91: - if (lookahead == 'n') ADVANCE(165); - if (lookahead == 'p') ADVANCE(166); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(167); - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 'x') ADVANCE(166); END_STATE(); case 93: - if (lookahead == 'i') ADVANCE(169); + if (lookahead == 'a') ADVANCE(167); + if (lookahead == 'i') ADVANCE(168); + if (lookahead == 'o') ADVANCE(169); END_STATE(); case 94: - if (lookahead == 'a') ADVANCE(170); + if (lookahead == 'n') ADVANCE(170); END_STATE(); case 95: - if (lookahead == 'g') ADVANCE(171); + if (lookahead == 'e') ADVANCE(171); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_asm); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 97: - if (lookahead == 'o') ADVANCE(172); + if (lookahead == 'p') ADVANCE(173); + if (lookahead == 't') ADVANCE(174); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(173); + if (lookahead == 'h') ADVANCE(175); + if (lookahead == 'r') ADVANCE(176); END_STATE(); case 99: - if (lookahead == 'a') ADVANCE(174); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); END_STATE(); case 100: - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'o') ADVANCE(180); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'i') ADVANCE(181); END_STATE(); case 102: - if (lookahead == 's') ADVANCE(177); - if (lookahead == 't') ADVANCE(178); + if (lookahead == 'a') ADVANCE(182); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(179); - if (lookahead == 'i') ADVANCE(180); + if (lookahead == 'g') ADVANCE(183); END_STATE(); case 104: - if (lookahead == 'b') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'o') ADVANCE(184); END_STATE(); case 106: - if (lookahead == 'm') ADVANCE(183); + if (lookahead == 'l') ADVANCE(185); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'a') ADVANCE(186); END_STATE(); case 108: - if (lookahead == 's') ADVANCE(185); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 109: - if (lookahead == 'a') ADVANCE(186); + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(189); + if (lookahead == 't') ADVANCE(190); END_STATE(); case 111: - if (lookahead == 'o') ADVANCE(187); + if (lookahead == 'a') ADVANCE(191); + if (lookahead == 'i') ADVANCE(192); END_STATE(); case 112: - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'b') ADVANCE(193); END_STATE(); case 113: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(189); - if (lookahead == '3') ADVANCE(190); - if (lookahead == '6') ADVANCE(191); - if (lookahead == '8') ADVANCE(192); - if (lookahead == 'p') ADVANCE(193); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 114: - if (lookahead == 'g') ADVANCE(194); + if (lookahead == 'm') ADVANCE(195); END_STATE(); case 115: - if (lookahead == '_') ADVANCE(195); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(196); + if (lookahead == 's') ADVANCE(197); END_STATE(); case 117: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'a') ADVANCE(198); END_STATE(); case 118: - if (lookahead == 's') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 119: - if (lookahead == 'd') ADVANCE(199); + if (lookahead == 'o') ADVANCE(199); END_STATE(); case 120: if (lookahead == 'i') ADVANCE(200); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(201); + ACCEPT_TOKEN(aux_sym_primitive_type_token1); + if (lookahead == '1') ADVANCE(201); + if (lookahead == '3') ADVANCE(202); + if (lookahead == '6') ADVANCE(203); + if (lookahead == '8') ADVANCE(204); + if (lookahead == 'p') ADVANCE(205); END_STATE(); case 122: - if (lookahead == 'u') ADVANCE(202); + if (lookahead == 'g') ADVANCE(206); END_STATE(); case 123: - if (lookahead == 'r') ADVANCE(203); + if (lookahead == '_') ADVANCE(207); END_STATE(); case 124: - if (lookahead == 'n') ADVANCE(204); + if (lookahead == 'e') ADVANCE(208); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'l') ADVANCE(209); END_STATE(); case 126: - if (lookahead == 'z') ADVANCE(206); + if (lookahead == 's') ADVANCE(210); END_STATE(); case 127: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 'd') ADVANCE(211); END_STATE(); case 128: - if (lookahead == 'u') ADVANCE(208); + if (lookahead == 'i') ADVANCE(212); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(209); + if (lookahead == 't') ADVANCE(213); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'u') ADVANCE(214); END_STATE(); case 131: - if (lookahead == 'e') ADVANCE(141); + if (lookahead == 'r') ADVANCE(215); END_STATE(); case 132: - if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 133: - if (lookahead == 't') ADVANCE(212); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 134: - if (lookahead == 'o') ADVANCE(213); + if (lookahead == 'z') ADVANCE(218); END_STATE(); case 135: - if (lookahead == 'i') ADVANCE(214); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 136: - if (lookahead == 'd') ADVANCE(173); + if (lookahead == 'u') ADVANCE(220); END_STATE(); case 137: - if (lookahead == 'a') ADVANCE(215); + if (lookahead == 't') ADVANCE(221); END_STATE(); case 138: - if (lookahead == 'l') ADVANCE(216); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 139: - if (lookahead == 'E') ADVANCE(217); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_NULL); + if (lookahead == 'e') ADVANCE(223); END_STATE(); case 141: - ACCEPT_TOKEN(sym_true); + if (lookahead == 't') ADVANCE(224); END_STATE(); case 142: - if (lookahead == 'g') ADVANCE(218); + if (lookahead == 'o') ADVANCE(225); END_STATE(); case 143: - if (lookahead == 'm') ADVANCE(219); + if (lookahead == 'i') ADVANCE(226); END_STATE(); case 144: - if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'd') ADVANCE(185); END_STATE(); case 145: - if (lookahead == 'n') ADVANCE(221); + if (lookahead == 'a') ADVANCE(227); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'l') ADVANCE(228); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(223); + if (lookahead == 'E') ADVANCE(229); END_STATE(); case 148: - if (lookahead == 'm') ADVANCE(224); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(225); + ACCEPT_TOKEN(sym_true); END_STATE(); case 150: - if (lookahead == 's') ADVANCE(226); + if (lookahead == 'g') ADVANCE(230); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'm') ADVANCE(231); END_STATE(); case 152: - if (lookahead == 'r') ADVANCE(228); + if (lookahead == 'I') ADVANCE(232); END_STATE(); case 153: - if (lookahead == 'c') ADVANCE(229); + if (lookahead == 'i') ADVANCE(233); END_STATE(); case 154: - if (lookahead == 'c') ADVANCE(230); - if (lookahead == 't') ADVANCE(231); + if (lookahead == 'a') ADVANCE(234); END_STATE(); case 155: - if (lookahead == 's') ADVANCE(232); + if (lookahead == 'e') ADVANCE(235); END_STATE(); case 156: - if (lookahead == 'n') ADVANCE(233); + if (lookahead == 'n') ADVANCE(236); END_STATE(); case 157: - if (lookahead == 'r') ADVANCE(234); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 158: - if (lookahead == 'l') ADVANCE(235); + if (lookahead == 't') ADVANCE(238); END_STATE(); case 159: - if (lookahead == 'a') ADVANCE(236); + if (lookahead == 'i') ADVANCE(239); END_STATE(); case 160: - if (lookahead == 's') ADVANCE(237); + if (lookahead == 'm') ADVANCE(240); END_STATE(); case 161: - if (lookahead == 't') ADVANCE(238); + if (lookahead == 't') ADVANCE(241); END_STATE(); case 162: - if (lookahead == 'd') ADVANCE(239); + if (lookahead == 's') ADVANCE(242); END_STATE(); case 163: - if (lookahead == 'i') ADVANCE(240); - if (lookahead == 'r') ADVANCE(241); + if (lookahead == 'e') ADVANCE(243); END_STATE(); case 164: - if (lookahead == 'y') ADVANCE(242); + if (lookahead == 'r') ADVANCE(244); END_STATE(); case 165: - if (lookahead == 'a') ADVANCE(243); + if (lookahead == 'c') ADVANCE(245); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(244); + if (lookahead == 'c') ADVANCE(246); + if (lookahead == 't') ADVANCE(247); END_STATE(); case 167: - if (lookahead == 'c') ADVANCE(245); + if (lookahead == 's') ADVANCE(248); END_STATE(); case 168: - if (lookahead == 'l') ADVANCE(246); + if (lookahead == 'n') ADVANCE(249); END_STATE(); case 169: - if (lookahead == 'g') ADVANCE(247); + if (lookahead == 'r') ADVANCE(250); END_STATE(); case 170: - if (lookahead == 'l') ADVANCE(248); + if (lookahead == 'l') ADVANCE(251); END_STATE(); case 171: - if (lookahead == 'n') ADVANCE(249); + if (lookahead == 'a') ADVANCE(252); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_auto); + if (lookahead == 's') ADVANCE(253); END_STATE(); case 173: - ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == 't') ADVANCE(254); END_STATE(); case 174: - if (lookahead == 'k') ADVANCE(250); + if (lookahead == 'd') ADVANCE(255); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'i') ADVANCE(256); + if (lookahead == 'r') ADVANCE(257); END_STATE(); case 176: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(251); - if (lookahead == '3') ADVANCE(252); - if (lookahead == '6') ADVANCE(253); - if (lookahead == '8') ADVANCE(254); - if (lookahead == 'p') ADVANCE(255); + if (lookahead == 'y') ADVANCE(258); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(256); + if (lookahead == 'a') ADVANCE(259); END_STATE(); case 178: - if (lookahead == 'i') ADVANCE(257); + if (lookahead == 't') ADVANCE(260); END_STATE(); case 179: - if (lookahead == 'u') ADVANCE(258); + if (lookahead == 'c') ADVANCE(261); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(259); + if (lookahead == 'l') ADVANCE(262); END_STATE(); case 181: - if (lookahead == 'l') ADVANCE(260); + if (lookahead == 'g') ADVANCE(263); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'l') ADVANCE(264); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'n') ADVANCE(265); END_STATE(); case 184: - if (lookahead == 'r') ADVANCE(261); + ACCEPT_TOKEN(anon_sym_auto); END_STATE(); case 185: - if (lookahead == 'e') ADVANCE(217); + ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); case 186: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'k') ADVANCE(266); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_goto); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 188: - if (lookahead == 'n') ADVANCE(262); + ACCEPT_TOKEN(aux_sym_primitive_type_token1); + if (lookahead == '1') ADVANCE(267); + if (lookahead == '3') ADVANCE(268); + if (lookahead == '6') ADVANCE(269); + if (lookahead == '8') ADVANCE(270); + if (lookahead == 'p') ADVANCE(271); END_STATE(); case 189: - if (lookahead == '6') ADVANCE(263); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 190: - if (lookahead == '2') ADVANCE(264); + if (lookahead == 'i') ADVANCE(273); END_STATE(); case 191: - if (lookahead == '4') ADVANCE(265); + if (lookahead == 'u') ADVANCE(274); END_STATE(); case 192: - if (lookahead == '_') ADVANCE(266); + if (lookahead == 'n') ADVANCE(275); END_STATE(); case 193: - if (lookahead == 't') ADVANCE(267); + if (lookahead == 'l') ADVANCE(276); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_long); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 195: - if (lookahead == 'a') ADVANCE(268); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 196: - if (lookahead == 't') ADVANCE(269); + if (lookahead == 'r') ADVANCE(277); END_STATE(); case 197: - if (lookahead == 'p') ADVANCE(270); + if (lookahead == 'e') ADVANCE(229); END_STATE(); case 198: - if (lookahead == 'e') ADVANCE(271); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 199: - if (lookahead == 'i') ADVANCE(272); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 200: - if (lookahead == 's') ADVANCE(273); + if (lookahead == 'n') ADVANCE(278); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(274); + if (lookahead == '6') ADVANCE(279); END_STATE(); case 202: - if (lookahead == 'r') ADVANCE(275); + if (lookahead == '2') ADVANCE(280); END_STATE(); case 203: - if (lookahead == 't') ADVANCE(276); + if (lookahead == '4') ADVANCE(281); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(277); + if (lookahead == '_') ADVANCE(282); END_STATE(); case 205: - if (lookahead == '_') ADVANCE(278); - if (lookahead == 'o') ADVANCE(279); + if (lookahead == 't') ADVANCE(283); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(280); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 207: - if (lookahead == 'i') ADVANCE(281); + if (lookahead == 'a') ADVANCE(284); END_STATE(); case 208: - if (lookahead == 'c') ADVANCE(282); + if (lookahead == 't') ADVANCE(285); END_STATE(); case 209: - if (lookahead == 'c') ADVANCE(283); + if (lookahead == 'p') ADVANCE(286); END_STATE(); case 210: - if (lookahead == 'a') ADVANCE(284); + if (lookahead == 'e') ADVANCE(287); END_STATE(); case 211: - if (lookahead == 'd') ADVANCE(285); + if (lookahead == 'i') ADVANCE(288); END_STATE(); case 212: - if (lookahead == '1') ADVANCE(286); - if (lookahead == '3') ADVANCE(287); - if (lookahead == '6') ADVANCE(288); - if (lookahead == '8') ADVANCE(289); - if (lookahead == 'p') ADVANCE(290); + if (lookahead == 's') ADVANCE(289); END_STATE(); case 213: - if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 214: - if (lookahead == 'g') ADVANCE(292); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 215: - if (lookahead == 't') ADVANCE(293); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 216: - if (lookahead == 'e') ADVANCE(294); + if (lookahead == 'e') ADVANCE(293); END_STATE(); case 217: - ACCEPT_TOKEN(sym_false); + if (lookahead == '_') ADVANCE(294); + if (lookahead == 'o') ADVANCE(295); END_STATE(); case 218: - if (lookahead == 'n') ADVANCE(295); + if (lookahead == 'e') ADVANCE(296); END_STATE(); case 219: - if (lookahead == 'i') ADVANCE(296); + if (lookahead == 'i') ADVANCE(297); END_STATE(); case 220: - if (lookahead == 'r') ADVANCE(297); + if (lookahead == 'c') ADVANCE(298); END_STATE(); case 221: - if (lookahead == 'u') ADVANCE(298); + if (lookahead == 'c') ADVANCE(299); END_STATE(); case 222: - if (lookahead == 't') ADVANCE(299); + if (lookahead == 'a') ADVANCE(300); END_STATE(); case 223: - if (lookahead == 'g') ADVANCE(300); + if (lookahead == 'd') ADVANCE(301); + if (lookahead == 'o') ADVANCE(302); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym___asm); - if (lookahead == '_') ADVANCE(301); + if (lookahead == '1') ADVANCE(303); + if (lookahead == '3') ADVANCE(304); + if (lookahead == '6') ADVANCE(305); + if (lookahead == '8') ADVANCE(306); + if (lookahead == 'p') ADVANCE(307); END_STATE(); case 225: - if (lookahead == 'r') ADVANCE(302); + if (lookahead == 'n') ADVANCE(308); END_STATE(); case 226: - if (lookahead == 'e') ADVANCE(303); + if (lookahead == 'g') ADVANCE(309); END_STATE(); case 227: - if (lookahead == 'c') ADVANCE(304); + if (lookahead == 't') ADVANCE(310); END_STATE(); case 228: - if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'e') ADVANCE(311); END_STATE(); case 229: - if (lookahead == 'l') ADVANCE(306); + ACCEPT_TOKEN(sym_false); END_STATE(); case 230: - if (lookahead == 'e') ADVANCE(307); + if (lookahead == 'n') ADVANCE(312); END_STATE(); case 231: - if (lookahead == 'e') ADVANCE(308); + if (lookahead == 'i') ADVANCE(313); END_STATE(); case 232: - if (lookahead == 't') ADVANCE(309); + if (lookahead == 'n') ADVANCE(314); END_STATE(); case 233: - if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'm') ADVANCE(315); END_STATE(); case 234: - if (lookahead == 'c') ADVANCE(311); + if (lookahead == 't') ADVANCE(316); END_STATE(); case 235: - if (lookahead == 'i') ADVANCE(312); + if (lookahead == 'r') ADVANCE(317); END_STATE(); case 236: - if (lookahead == 'v') ADVANCE(313); + if (lookahead == 'u') ADVANCE(318); END_STATE(); case 237: - if (lookahead == 't') ADVANCE(314); + if (lookahead == 't') ADVANCE(319); END_STATE(); case 238: - if (lookahead == 'r') ADVANCE(315); + if (lookahead == 'i') ADVANCE(320); END_STATE(); case 239: - if (lookahead == 'c') ADVANCE(316); + if (lookahead == 'g') ADVANCE(321); END_STATE(); case 240: - if (lookahead == 's') ADVANCE(317); + ACCEPT_TOKEN(anon_sym___asm); + if (lookahead == '_') ADVANCE(322); END_STATE(); case 241: - if (lookahead == 'e') ADVANCE(318); + if (lookahead == 'r') ADVANCE(323); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym___try); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 243: - if (lookahead == 'l') ADVANCE(319); + if (lookahead == 'c') ADVANCE(325); END_STATE(); case 244: - if (lookahead == 'r') ADVANCE(320); + if (lookahead == 'c') ADVANCE(326); END_STATE(); case 245: - if (lookahead == 't') ADVANCE(321); + if (lookahead == 'l') ADVANCE(327); END_STATE(); case 246: - if (lookahead == 'a') ADVANCE(322); + if (lookahead == 'e') ADVANCE(328); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'e') ADVANCE(329); END_STATE(); case 248: - if (lookahead == 'i') ADVANCE(324); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 249: - if (lookahead == 'a') ADVANCE(325); - if (lookahead == 'o') ADVANCE(326); + if (lookahead == 'a') ADVANCE(331); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'c') ADVANCE(332); END_STATE(); case 251: - if (lookahead == '6') ADVANCE(327); + if (lookahead == 'i') ADVANCE(333); END_STATE(); case 252: - if (lookahead == '2') ADVANCE(328); + if (lookahead == 'v') ADVANCE(334); END_STATE(); case 253: - if (lookahead == '4') ADVANCE(329); + if (lookahead == 't') ADVANCE(335); END_STATE(); case 254: - if (lookahead == '_') ADVANCE(330); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 255: - if (lookahead == 't') ADVANCE(331); + if (lookahead == 'c') ADVANCE(337); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(332); + if (lookahead == 's') ADVANCE(338); END_STATE(); case 257: - if (lookahead == 'n') ADVANCE(333); + if (lookahead == 'e') ADVANCE(339); END_STATE(); case 258: - if (lookahead == 'l') ADVANCE(334); + ACCEPT_TOKEN(anon_sym___try); END_STATE(); case 259: - if (lookahead == 'e') ADVANCE(335); + if (lookahead == 'l') ADVANCE(340); END_STATE(); case 260: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'r') ADVANCE(341); END_STATE(); case 261: - if (lookahead == 'n') ADVANCE(336); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 262: - if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'a') ADVANCE(343); END_STATE(); case 263: - if (lookahead == '_') ADVANCE(338); + if (lookahead == 'n') ADVANCE(344); END_STATE(); case 264: - if (lookahead == '_') ADVANCE(339); + if (lookahead == 'i') ADVANCE(345); END_STATE(); case 265: - if (lookahead == '_') ADVANCE(340); + if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'o') ADVANCE(347); END_STATE(); case 266: - if (lookahead == 't') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 267: - if (lookahead == 'r') ADVANCE(341); + if (lookahead == '6') ADVANCE(348); END_STATE(); case 268: - if (lookahead == 'l') ADVANCE(342); + if (lookahead == '2') ADVANCE(349); END_STATE(); case 269: - if (lookahead == 'u') ADVANCE(343); + if (lookahead == '4') ADVANCE(350); END_STATE(); case 270: - if (lookahead == 't') ADVANCE(344); + if (lookahead == '_') ADVANCE(351); END_STATE(); case 271: - if (lookahead == 't') ADVANCE(345); + if (lookahead == 't') ADVANCE(352); END_STATE(); case 272: - if (lookahead == 'f') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(353); END_STATE(); case 273: - if (lookahead == 't') ADVANCE(347); + if (lookahead == 'n') ADVANCE(354); END_STATE(); case 274: - if (lookahead == 'i') ADVANCE(348); + if (lookahead == 'l') ADVANCE(355); END_STATE(); case 275: - if (lookahead == 'n') ADVANCE(349); + if (lookahead == 'e') ADVANCE(356); END_STATE(); case 276: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 277: - if (lookahead == 'd') ADVANCE(350); + if (lookahead == 'n') ADVANCE(357); END_STATE(); case 278: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'e') ADVANCE(358); END_STATE(); case 279: - if (lookahead == 'f') ADVANCE(351); + if (lookahead == '_') ADVANCE(359); END_STATE(); case 280: - if (lookahead == '_') ADVANCE(352); + if (lookahead == '_') ADVANCE(360); END_STATE(); case 281: - if (lookahead == 'c') ADVANCE(353); + if (lookahead == '_') ADVANCE(361); END_STATE(); case 282: - if (lookahead == 't') ADVANCE(354); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 283: - if (lookahead == 'h') ADVANCE(355); + if (lookahead == 'r') ADVANCE(362); END_STATE(); case 284: - if (lookahead == 'd') ADVANCE(356); + if (lookahead == 'l') ADVANCE(363); END_STATE(); case 285: - if (lookahead == 'e') ADVANCE(357); + if (lookahead == 'u') ADVANCE(364); END_STATE(); case 286: - if (lookahead == '6') ADVANCE(358); + if (lookahead == 't') ADVANCE(365); END_STATE(); case 287: - if (lookahead == '2') ADVANCE(359); + if (lookahead == 't') ADVANCE(366); END_STATE(); case 288: - if (lookahead == '4') ADVANCE(360); + if (lookahead == 'f') ADVANCE(367); END_STATE(); case 289: - if (lookahead == '_') ADVANCE(361); + if (lookahead == 't') ADVANCE(368); END_STATE(); case 290: - if (lookahead == 't') ADVANCE(362); + if (lookahead == 'i') ADVANCE(369); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'n') ADVANCE(370); END_STATE(); case 292: - if (lookahead == 'n') ADVANCE(363); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 293: - if (lookahead == 'i') ADVANCE(364); + if (lookahead == 'd') ADVANCE(371); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 295: - if (lookahead == 'a') ADVANCE(365); - if (lookahead == 'o') ADVANCE(366); + if (lookahead == 'f') ADVANCE(372); END_STATE(); case 296: - if (lookahead == 'c') ADVANCE(367); + if (lookahead == '_') ADVANCE(373); END_STATE(); case 297: - if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'c') ADVANCE(374); END_STATE(); case 298: - if (lookahead == 'l') ADVANCE(369); + if (lookahead == 't') ADVANCE(375); END_STATE(); case 299: - if (lookahead == 'u') ADVANCE(370); + if (lookahead == 'h') ADVANCE(376); END_STATE(); case 300: - if (lookahead == 'n') ADVANCE(371); + if (lookahead == 'd') ADVANCE(377); END_STATE(); case 301: - if (lookahead == '_') ADVANCE(372); + if (lookahead == 'e') ADVANCE(378); END_STATE(); case 302: - if (lookahead == 'i') ADVANCE(373); + if (lookahead == 'f') ADVANCE(379); END_STATE(); case 303: - if (lookahead == 'd') ADVANCE(374); + if (lookahead == '6') ADVANCE(380); END_STATE(); case 304: - if (lookahead == 'l') ADVANCE(375); + if (lookahead == '2') ADVANCE(381); END_STATE(); case 305: - if (lookahead == 'a') ADVANCE(376); + if (lookahead == '4') ADVANCE(382); END_STATE(); case 306: - if (lookahead == 's') ADVANCE(377); + if (lookahead == '_') ADVANCE(383); END_STATE(); case 307: - if (lookahead == 'p') ADVANCE(378); + if (lookahead == 't') ADVANCE(384); END_STATE(); case 308: - if (lookahead == 'n') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 309: - if (lookahead == 'c') ADVANCE(380); + if (lookahead == 'n') ADVANCE(385); END_STATE(); case 310: - if (lookahead == 'l') ADVANCE(381); + if (lookahead == 'i') ADVANCE(386); END_STATE(); case 311: - if (lookahead == 'e') ADVANCE(382); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 312: - if (lookahead == 'n') ADVANCE(383); + if (lookahead == 'a') ADVANCE(387); + if (lookahead == 'o') ADVANCE(388); END_STATE(); case 313: - if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'c') ADVANCE(389); END_STATE(); case 314: - if (lookahead == 'r') ADVANCE(385); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 315: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'a') ADVANCE(391); END_STATE(); case 316: - if (lookahead == 'a') ADVANCE(386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); case 317: - if (lookahead == 'c') ADVANCE(387); + if (lookahead == 'i') ADVANCE(393); END_STATE(); case 318: - if (lookahead == 'a') ADVANCE(388); + if (lookahead == 'l') ADVANCE(394); END_STATE(); case 319: - if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'u') ADVANCE(395); END_STATE(); case 320: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == 'c') ADVANCE(396); END_STATE(); case 321: - if (lookahead == 'o') ADVANCE(390); + if (lookahead == 'n') ADVANCE(397); END_STATE(); case 322: - if (lookahead == 't') ADVANCE(391); + if (lookahead == '_') ADVANCE(398); END_STATE(); case 323: - if (lookahead == 'o') ADVANCE(392); + if (lookahead == 'i') ADVANCE(399); END_STATE(); case 324: - if (lookahead == 'g') ADVANCE(393); + if (lookahead == 'd') ADVANCE(400); END_STATE(); case 325: - if (lookahead == 's') ADVANCE(394); + if (lookahead == 'l') ADVANCE(401); END_STATE(); case 326: - if (lookahead == 'f') ADVANCE(395); + if (lookahead == 'a') ADVANCE(402); END_STATE(); case 327: - if (lookahead == '_') ADVANCE(396); + if (lookahead == 's') ADVANCE(403); END_STATE(); case 328: - if (lookahead == '_') ADVANCE(397); + if (lookahead == 'p') ADVANCE(404); END_STATE(); case 329: - if (lookahead == '_') ADVANCE(398); + if (lookahead == 'n') ADVANCE(405); END_STATE(); case 330: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'c') ADVANCE(406); END_STATE(); case 331: - if (lookahead == 'r') ADVANCE(399); + if (lookahead == 'l') ADVANCE(407); END_STATE(); case 332: - if (lookahead == 'x') ADVANCE(400); + if (lookahead == 'e') ADVANCE(408); END_STATE(); case 333: - if (lookahead == 'u') ADVANCE(401); + if (lookahead == 'n') ADVANCE(409); END_STATE(); case 334: - if (lookahead == 't') ADVANCE(402); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 335: - if (lookahead == 'd') ADVANCE(403); + if (lookahead == 'r') ADVANCE(411); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'a') ADVANCE(412); END_STATE(); case 338: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'c') ADVANCE(413); END_STATE(); case 339: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'a') ADVANCE(414); END_STATE(); case 340: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'i') ADVANCE(415); END_STATE(); case 341: - if (lookahead == '_') ADVANCE(404); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 342: - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'o') ADVANCE(416); END_STATE(); case 343: - if (lookahead == 'r') ADVANCE(406); + if (lookahead == 't') ADVANCE(417); END_STATE(); case 344: - if (lookahead == 'r') ADVANCE(407); + if (lookahead == 'o') ADVANCE(418); END_STATE(); case 345: - if (lookahead == 'o') ADVANCE(408); + if (lookahead == 'g') ADVANCE(419); END_STATE(); case 346: - if (lookahead == 'f') ADVANCE(409); + if (lookahead == 's') ADVANCE(420); END_STATE(); case 347: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'f') ADVANCE(421); END_STATE(); case 348: - if (lookahead == 'c') ADVANCE(411); + if (lookahead == '_') ADVANCE(422); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == '_') ADVANCE(423); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == '_') ADVANCE(424); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 352: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'r') ADVANCE(425); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'x') ADVANCE(426); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'u') ADVANCE(427); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 't') ADVANCE(428); END_STATE(); case 356: - if (lookahead == '_') ADVANCE(412); + if (lookahead == 'd') ADVANCE(429); END_STATE(); case 357: - if (lookahead == 'f') ADVANCE(413); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 358: - if (lookahead == '_') ADVANCE(414); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 359: - if (lookahead == '_') ADVANCE(415); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 360: - if (lookahead == '_') ADVANCE(416); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 361: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 362: - if (lookahead == 'r') ADVANCE(417); + if (lookahead == '_') ADVANCE(430); END_STATE(); case 363: - if (lookahead == 'e') ADVANCE(418); + if (lookahead == 'i') ADVANCE(431); END_STATE(); case 364: - if (lookahead == 'l') ADVANCE(419); + if (lookahead == 'r') ADVANCE(432); END_STATE(); case 365: - if (lookahead == 's') ADVANCE(420); + if (lookahead == 'r') ADVANCE(433); END_STATE(); case 366: - if (lookahead == 'f') ADVANCE(421); + if (lookahead == 'o') ADVANCE(434); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 'f') ADVANCE(435); END_STATE(); case 368: - if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'e') ADVANCE(436); END_STATE(); case 369: - if (lookahead == 'l') ADVANCE(423); + if (lookahead == 'c') ADVANCE(437); END_STATE(); case 370: - if (lookahead == 'r') ADVANCE(424); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 371: - if (lookahead == 'o') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym___asm__); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 373: - if (lookahead == 'b') ADVANCE(426); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym___based); + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(438); END_STATE(); case 375: - ACCEPT_TOKEN(anon_sym___cdecl); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 376: - if (lookahead == 'l') ADVANCE(427); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 377: - if (lookahead == 'p') ADVANCE(428); + if (lookahead == '_') ADVANCE(439); END_STATE(); case 378: - if (lookahead == 't') ADVANCE(429); + if (lookahead == 'f') ADVANCE(440); END_STATE(); case 379: - if (lookahead == 's') ADVANCE(430); + ACCEPT_TOKEN(anon_sym_typeof); + if (lookahead == '_') ADVANCE(441); END_STATE(); case 380: - if (lookahead == 'a') ADVANCE(431); + if (lookahead == '_') ADVANCE(442); END_STATE(); case 381: - if (lookahead == 'l') ADVANCE(432); + if (lookahead == '_') ADVANCE(443); END_STATE(); case 382: - if (lookahead == 'i') ADVANCE(433); + if (lookahead == '_') ADVANCE(444); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(434); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym___leave); + if (lookahead == 'r') ADVANCE(445); END_STATE(); case 385: - if (lookahead == 'i') ADVANCE(435); + if (lookahead == 'e') ADVANCE(446); END_STATE(); case 386: - if (lookahead == 'l') ADVANCE(436); + if (lookahead == 'l') ADVANCE(447); END_STATE(); case 387: - if (lookahead == 'a') ADVANCE(437); + if (lookahead == 's') ADVANCE(448); END_STATE(); case 388: - if (lookahead == 'd') ADVANCE(438); + if (lookahead == 'f') ADVANCE(449); END_STATE(); case 389: - if (lookahead == 'g') ADVANCE(439); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 390: - if (lookahead == 'r') ADVANCE(440); + ACCEPT_TOKEN(anon_sym__BitInt); END_STATE(); case 391: - if (lookahead == 'i') ADVANCE(441); + if (lookahead == 'l') ADVANCE(450); END_STATE(); case 392: - if (lookahead == 'f') ADVANCE(442); + ACCEPT_TOKEN(aux_sym_primitive_type_token1); + if (lookahead == 'x') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); END_STATE(); case 393: - if (lookahead == 'n') ADVANCE(443); + if (lookahead == 'c') ADVANCE(451); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym_alignas); + if (lookahead == 'l') ADVANCE(452); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_alignof); + if (lookahead == 'r') ADVANCE(453); END_STATE(); case 396: - if (lookahead == 't') ADVANCE(173); + if (lookahead == '_') ADVANCE(454); END_STATE(); case 397: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'o') ADVANCE(455); END_STATE(); case 398: - if (lookahead == 't') ADVANCE(173); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 399: - if (lookahead == '_') ADVANCE(444); + if (lookahead == 'b') ADVANCE(456); END_STATE(); case 400: - if (lookahead == 'p') ADVANCE(445); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 401: - if (lookahead == 'e') ADVANCE(446); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'l') ADVANCE(457); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'p') ADVANCE(458); END_STATE(); case 404: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 't') ADVANCE(459); END_STATE(); case 405: - if (lookahead == 'g') ADVANCE(447); + if (lookahead == 's') ADVANCE(460); END_STATE(); case 406: - if (lookahead == 'n') ADVANCE(448); + if (lookahead == 'a') ADVANCE(461); END_STATE(); case 407: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(449); + if (lookahead == 'l') ADVANCE(462); END_STATE(); case 408: - if (lookahead == 'f') ADVANCE(450); + if (lookahead == 'i') ADVANCE(463); END_STATE(); case 409: - if (lookahead == '_') ADVANCE(451); + if (lookahead == 'e') ADVANCE(464); END_STATE(); case 410: - if (lookahead == 'r') ADVANCE(452); + ACCEPT_TOKEN(anon_sym___leave); END_STATE(); case 411: - if (lookahead == 't') ADVANCE(453); + if (lookahead == 'i') ADVANCE(465); END_STATE(); case 412: - if (lookahead == 'l') ADVANCE(454); + if (lookahead == 'l') ADVANCE(466); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'a') ADVANCE(467); END_STATE(); case 414: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'd') ADVANCE(468); END_STATE(); case 415: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'g') ADVANCE(469); END_STATE(); case 416: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'r') ADVANCE(470); END_STATE(); case 417: - if (lookahead == '_') ADVANCE(455); + if (lookahead == 'i') ADVANCE(471); END_STATE(); case 418: - if (lookahead == 'd') ADVANCE(456); + if (lookahead == 'f') ADVANCE(472); END_STATE(); case 419: - if (lookahead == 'e') ADVANCE(457); + if (lookahead == 'n') ADVANCE(473); END_STATE(); case 420: - ACCEPT_TOKEN(anon_sym__Alignas); + ACCEPT_TOKEN(anon_sym_alignas); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym__Alignof); + ACCEPT_TOKEN(anon_sym_alignof); END_STATE(); case 422: - ACCEPT_TOKEN(anon_sym__Generic); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 423: - ACCEPT_TOKEN(anon_sym__Nonnull); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 424: - if (lookahead == 'n') ADVANCE(458); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 425: - if (lookahead == 'f') ADVANCE(459); + if (lookahead == '_') ADVANCE(474); END_STATE(); case 426: - if (lookahead == 'u') ADVANCE(460); + if (lookahead == 'p') ADVANCE(475); END_STATE(); case 427: - if (lookahead == 'l') ADVANCE(461); + if (lookahead == 'e') ADVANCE(476); END_STATE(); case 428: - if (lookahead == 'e') ADVANCE(462); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 429: - ACCEPT_TOKEN(anon_sym___except); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 430: - if (lookahead == 'i') ADVANCE(463); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 431: - if (lookahead == 'l') ADVANCE(464); + if (lookahead == 'g') ADVANCE(477); END_STATE(); case 432: - if (lookahead == 'y') ADVANCE(465); + if (lookahead == 'n') ADVANCE(478); END_STATE(); case 433: - if (lookahead == 'n') ADVANCE(466); + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(479); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym___inline); - if (lookahead == '_') ADVANCE(467); + if (lookahead == 'f') ADVANCE(480); END_STATE(); case 435: - if (lookahead == 'c') ADVANCE(468); + if (lookahead == '_') ADVANCE(481); END_STATE(); case 436: - if (lookahead == 'l') ADVANCE(469); + if (lookahead == 'r') ADVANCE(482); END_STATE(); case 437: - if (lookahead == 'l') ADVANCE(470); + if (lookahead == 't') ADVANCE(483); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym___thread); + if (lookahead == 'a') ADVANCE(484); END_STATE(); case 439: - if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'l') ADVANCE(485); END_STATE(); case 440: - if (lookahead == 'c') ADVANCE(472); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 441: - if (lookahead == 'l') ADVANCE(473); + if (lookahead == 'u') ADVANCE(486); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym__alignof); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 443: - if (lookahead == 'e') ADVANCE(474); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 444: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 445: - if (lookahead == 'r') ADVANCE(475); + if (lookahead == '_') ADVANCE(487); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'd') ADVANCE(488); END_STATE(); case 447: - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'e') ADVANCE(489); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_noreturn); + ACCEPT_TOKEN(anon_sym__Alignas); END_STATE(); case 449: - if (lookahead == 't') ADVANCE(173); + ACCEPT_TOKEN(anon_sym__Alignof); END_STATE(); case 450: - ACCEPT_TOKEN(anon_sym_offsetof); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(490); END_STATE(); case 451: - if (lookahead == 't') ADVANCE(173); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym__Nonnull); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'n') ADVANCE(491); END_STATE(); case 454: - if (lookahead == 'o') ADVANCE(477); + if (lookahead == 'a') ADVANCE(492); END_STATE(); case 455: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'f') ADVANCE(493); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'u') ADVANCE(494); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'l') ADVANCE(495); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym__Noreturn); + if (lookahead == 'e') ADVANCE(496); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym___alignof); - if (lookahead == '_') ADVANCE(478); + ACCEPT_TOKEN(anon_sym___except); END_STATE(); case 460: - if (lookahead == 't') ADVANCE(479); + if (lookahead == 'i') ADVANCE(497); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == 'l') ADVANCE(498); END_STATE(); case 462: - if (lookahead == 'c') ADVANCE(480); + if (lookahead == 'y') ADVANCE(499); END_STATE(); case 463: - if (lookahead == 'o') ADVANCE(481); + if (lookahead == 'n') ADVANCE(500); END_STATE(); case 464: - if (lookahead == 'l') ADVANCE(482); + ACCEPT_TOKEN(anon_sym___inline); + if (lookahead == '_') ADVANCE(501); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym___finally); + if (lookahead == 'c') ADVANCE(502); END_STATE(); case 466: - if (lookahead == 'l') ADVANCE(483); + if (lookahead == 'l') ADVANCE(503); END_STATE(); case 467: - if (lookahead == '_') ADVANCE(484); + if (lookahead == 'l') ADVANCE(504); END_STATE(); case 468: - if (lookahead == 't') ADVANCE(485); + ACCEPT_TOKEN(anon_sym___thread); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 'n') ADVANCE(505); END_STATE(); case 470: - if (lookahead == 'l') ADVANCE(486); + if (lookahead == 'c') ADVANCE(506); END_STATE(); case 471: - if (lookahead == 'e') ADVANCE(487); + if (lookahead == 'l') ADVANCE(507); END_STATE(); case 472: - if (lookahead == 'a') ADVANCE(488); + ACCEPT_TOKEN(anon_sym__alignof); END_STATE(); case 473: - if (lookahead == 'e') ADVANCE(489); + if (lookahead == 'e') ADVANCE(508); END_STATE(); case 474: - if (lookahead == 'd') ADVANCE(490); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'r') ADVANCE(509); END_STATE(); case 476: - if (lookahead == '_') ADVANCE(491); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 477: - if (lookahead == 'c') ADVANCE(492); + if (lookahead == 'n') ADVANCE(510); END_STATE(); case 478: - if (lookahead == '_') ADVANCE(493); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 479: - if (lookahead == 'e') ADVANCE(494); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 480: - ACCEPT_TOKEN(anon_sym___declspec); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 481: - if (lookahead == 'n') ADVANCE(495); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym___fastcall); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 483: - if (lookahead == 'i') ADVANCE(496); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 484: - ACCEPT_TOKEN(anon_sym___inline__); + if (lookahead == 's') ADVANCE(511); END_STATE(); case 485: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(497); + if (lookahead == 'o') ADVANCE(512); END_STATE(); case 486: - ACCEPT_TOKEN(anon_sym___thiscall); + if (lookahead == 'n') ADVANCE(513); END_STATE(); case 487: - if (lookahead == 'd') ADVANCE(498); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 488: - if (lookahead == 'l') ADVANCE(499); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 489: - if (lookahead == '_') ADVANCE(500); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(aux_sym_primitive_type_token1); + if (lookahead == 'x') ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(490); END_STATE(); case 491: - if (lookahead == 't') ADVANCE(173); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 492: - if (lookahead == 'a') ADVANCE(501); + if (lookahead == 's') ADVANCE(514); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym___alignof__); + ACCEPT_TOKEN(anon_sym___alignof); + if (lookahead == '_') ADVANCE(515); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym___attribute); - if (lookahead == '_') ADVANCE(502); + if (lookahead == 't') ADVANCE(516); END_STATE(); case 495: - if (lookahead == '_') ADVANCE(503); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 496: - if (lookahead == 'n') ADVANCE(504); + if (lookahead == 'c') ADVANCE(517); END_STATE(); case 497: - if (lookahead == '_') ADVANCE(505); + if (lookahead == 'o') ADVANCE(518); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 'l') ADVANCE(519); END_STATE(); case 499: - if (lookahead == 'l') ADVANCE(506); + ACCEPT_TOKEN(anon_sym___finally); END_STATE(); case 500: - if (lookahead == '_') ADVANCE(507); + if (lookahead == 'l') ADVANCE(520); END_STATE(); case 501: - if (lookahead == 'l') ADVANCE(508); + if (lookahead == '_') ADVANCE(521); END_STATE(); case 502: - if (lookahead == '_') ADVANCE(509); + if (lookahead == 't') ADVANCE(522); END_STATE(); case 503: - if (lookahead == '_') ADVANCE(510); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 504: - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'l') ADVANCE(523); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym___restrict__); + if (lookahead == 'e') ADVANCE(524); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 'a') ADVANCE(525); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym___volatile__); + if (lookahead == 'e') ADVANCE(526); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 'd') ADVANCE(527); END_STATE(); case 509: - ACCEPT_TOKEN(anon_sym___attribute__); + ACCEPT_TOKEN(anon_sym_constexpr); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym___extension__); + if (lookahead == '_') ADVANCE(528); END_STATE(); case 511: + if (lookahead == 's') ADVANCE(529); + END_STATE(); + case 512: + if (lookahead == 'c') ADVANCE(530); + END_STATE(); + case 513: + if (lookahead == 'q') ADVANCE(531); + END_STATE(); + case 514: + if (lookahead == 's') ADVANCE(532); + END_STATE(); + case 515: + if (lookahead == '_') ADVANCE(533); + END_STATE(); + case 516: + if (lookahead == 'e') ADVANCE(534); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 518: + if (lookahead == 'n') ADVANCE(535); + END_STATE(); + case 519: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 520: + if (lookahead == 'i') ADVANCE(536); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym___inline__); + END_STATE(); + case 522: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(537); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 524: + if (lookahead == 'd') ADVANCE(538); + END_STATE(); + case 525: + if (lookahead == 'l') ADVANCE(539); + END_STATE(); + case 526: + if (lookahead == '_') ADVANCE(540); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 528: + if (lookahead == 't') ADVANCE(185); + END_STATE(); + case 529: + if (lookahead == 'e') ADVANCE(541); + END_STATE(); + case 530: + if (lookahead == 'a') ADVANCE(542); + END_STATE(); + case 531: + if (lookahead == 'u') ADVANCE(543); + END_STATE(); + case 532: + if (lookahead == 'e') ADVANCE(544); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym___alignof__); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym___attribute); + if (lookahead == '_') ADVANCE(545); + END_STATE(); + case 535: + if (lookahead == '_') ADVANCE(546); + END_STATE(); + case 536: + if (lookahead == 'n') ADVANCE(547); + END_STATE(); + case 537: + if (lookahead == '_') ADVANCE(548); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 539: + if (lookahead == 'l') ADVANCE(549); + END_STATE(); + case 540: + if (lookahead == '_') ADVANCE(550); + END_STATE(); + case 541: + if (lookahead == 'r') ADVANCE(551); + END_STATE(); + case 542: + if (lookahead == 'l') ADVANCE(552); + END_STATE(); + case 543: + if (lookahead == 'a') ADVANCE(553); + END_STATE(); + case 544: + if (lookahead == 'r') ADVANCE(554); + END_STATE(); + case 545: + if (lookahead == '_') ADVANCE(555); + END_STATE(); + case 546: + if (lookahead == '_') ADVANCE(556); + END_STATE(); + case 547: + if (lookahead == 'e') ADVANCE(557); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym___volatile__); + END_STATE(); + case 551: + if (lookahead == 't') ADVANCE(558); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 553: + if (lookahead == 'l') ADVANCE(559); + END_STATE(); + case 554: + if (lookahead == 't') ADVANCE(560); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym___extension__); + END_STATE(); + case 557: ACCEPT_TOKEN(anon_sym___forceinline); END_STATE(); + case 558: + ACCEPT_TOKEN(anon_sym_static_assert); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_typeof_unqual); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym__Static_assert); + END_STATE(); default: return false; } @@ -9686,11 +10237,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 45}, [22] = {.lex_state = 45}, [23] = {.lex_state = 120}, - [24] = {.lex_state = 47}, + [24] = {.lex_state = 120}, [25] = {.lex_state = 120}, [26] = {.lex_state = 47}, [27] = {.lex_state = 120}, - [28] = {.lex_state = 120}, + [28] = {.lex_state = 47}, [29] = {.lex_state = 120}, [30] = {.lex_state = 120}, [31] = {.lex_state = 120}, @@ -9698,12 +10249,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [33] = {.lex_state = 120}, [34] = {.lex_state = 120}, [35] = {.lex_state = 120}, - [36] = {.lex_state = 47}, + [36] = {.lex_state = 120}, [37] = {.lex_state = 120}, [38] = {.lex_state = 120}, [39] = {.lex_state = 120}, [40] = {.lex_state = 120}, - [41] = {.lex_state = 120}, + [41] = {.lex_state = 47}, [42] = {.lex_state = 120}, [43] = {.lex_state = 120}, [44] = {.lex_state = 120}, @@ -9723,8 +10274,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [58] = {.lex_state = 47}, [59] = {.lex_state = 47}, [60] = {.lex_state = 47}, - [61] = {.lex_state = 120}, - [62] = {.lex_state = 47}, + [61] = {.lex_state = 47}, + [62] = {.lex_state = 120}, [63] = {.lex_state = 120}, [64] = {.lex_state = 120}, [65] = {.lex_state = 120}, @@ -9749,15 +10300,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 45}, [85] = {.lex_state = 45}, [86] = {.lex_state = 45}, - [87] = {.lex_state = 120}, + [87] = {.lex_state = 45}, [88] = {.lex_state = 45}, - [89] = {.lex_state = 120}, + [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}, + [95] = {.lex_state = 120}, [96] = {.lex_state = 45}, [97] = {.lex_state = 45}, [98] = {.lex_state = 45}, @@ -9776,7 +10327,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [111] = {.lex_state = 45}, [112] = {.lex_state = 45}, [113] = {.lex_state = 45}, - [114] = {.lex_state = 45}, + [114] = {.lex_state = 120}, [115] = {.lex_state = 45}, [116] = {.lex_state = 45}, [117] = {.lex_state = 45}, @@ -9808,13 +10359,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [143] = {.lex_state = 45}, [144] = {.lex_state = 45}, [145] = {.lex_state = 45}, - [146] = {.lex_state = 120}, - [147] = {.lex_state = 120}, - [148] = {.lex_state = 47}, - [149] = {.lex_state = 47}, - [150] = {.lex_state = 120}, + [146] = {.lex_state = 45}, + [147] = {.lex_state = 45}, + [148] = {.lex_state = 45}, + [149] = {.lex_state = 120}, + [150] = {.lex_state = 47}, [151] = {.lex_state = 120}, - [152] = {.lex_state = 120}, + [152] = {.lex_state = 47}, [153] = {.lex_state = 120}, [154] = {.lex_state = 120}, [155] = {.lex_state = 120}, @@ -9838,37 +10389,37 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [173] = {.lex_state = 120}, [174] = {.lex_state = 120}, [175] = {.lex_state = 120}, - [176] = {.lex_state = 47}, - [177] = {.lex_state = 47}, - [178] = {.lex_state = 47}, + [176] = {.lex_state = 120}, + [177] = {.lex_state = 120}, + [178] = {.lex_state = 120}, [179] = {.lex_state = 120}, - [180] = {.lex_state = 47}, - [181] = {.lex_state = 47}, - [182] = {.lex_state = 47}, - [183] = {.lex_state = 47}, - [184] = {.lex_state = 47}, - [185] = {.lex_state = 47}, - [186] = {.lex_state = 47}, + [180] = {.lex_state = 120}, + [181] = {.lex_state = 120}, + [182] = {.lex_state = 120}, + [183] = {.lex_state = 120}, + [184] = {.lex_state = 120}, + [185] = {.lex_state = 120}, + [186] = {.lex_state = 120}, [187] = {.lex_state = 120}, - [188] = {.lex_state = 47}, + [188] = {.lex_state = 120}, [189] = {.lex_state = 120}, [190] = {.lex_state = 120}, [191] = {.lex_state = 120}, - [192] = {.lex_state = 47}, + [192] = {.lex_state = 120}, [193] = {.lex_state = 47}, [194] = {.lex_state = 47}, [195] = {.lex_state = 47}, - [196] = {.lex_state = 47}, + [196] = {.lex_state = 120}, [197] = {.lex_state = 47}, [198] = {.lex_state = 120}, - [199] = {.lex_state = 120}, + [199] = {.lex_state = 47}, [200] = {.lex_state = 47}, [201] = {.lex_state = 47}, [202] = {.lex_state = 47}, [203] = {.lex_state = 47}, - [204] = {.lex_state = 47}, + [204] = {.lex_state = 120}, [205] = {.lex_state = 120}, - [206] = {.lex_state = 47}, + [206] = {.lex_state = 120}, [207] = {.lex_state = 47}, [208] = {.lex_state = 47}, [209] = {.lex_state = 47}, @@ -9876,25 +10427,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [211] = {.lex_state = 47}, [212] = {.lex_state = 47}, [213] = {.lex_state = 47}, - [214] = {.lex_state = 47}, + [214] = {.lex_state = 120}, [215] = {.lex_state = 47}, [216] = {.lex_state = 47}, [217] = {.lex_state = 47}, - [218] = {.lex_state = 120}, - [219] = {.lex_state = 120}, - [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}, + [218] = {.lex_state = 47}, + [219] = {.lex_state = 47}, + [220] = {.lex_state = 47}, + [221] = {.lex_state = 47}, + [222] = {.lex_state = 47}, + [223] = {.lex_state = 47}, + [224] = {.lex_state = 47}, + [225] = {.lex_state = 47}, + [226] = {.lex_state = 47}, + [227] = {.lex_state = 47}, + [228] = {.lex_state = 47}, + [229] = {.lex_state = 47}, + [230] = {.lex_state = 47}, + [231] = {.lex_state = 47}, + [232] = {.lex_state = 47}, [233] = {.lex_state = 120}, [234] = {.lex_state = 120}, [235] = {.lex_state = 120}, @@ -9916,66 +10467,66 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [251] = {.lex_state = 120}, [252] = {.lex_state = 120}, [253] = {.lex_state = 120}, - [254] = {.lex_state = 47}, + [254] = {.lex_state = 120}, [255] = {.lex_state = 120}, [256] = {.lex_state = 120}, - [257] = {.lex_state = 120}, + [257] = {.lex_state = 47}, [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}, + [262] = {.lex_state = 47}, + [263] = {.lex_state = 47}, + [264] = {.lex_state = 47}, + [265] = {.lex_state = 47}, [266] = {.lex_state = 120}, - [267] = {.lex_state = 120}, - [268] = {.lex_state = 120}, - [269] = {.lex_state = 120}, - [270] = {.lex_state = 44}, - [271] = {.lex_state = 120}, - [272] = {.lex_state = 120}, - [273] = {.lex_state = 120}, - [274] = {.lex_state = 120}, - [275] = {.lex_state = 120}, - [276] = {.lex_state = 120}, - [277] = {.lex_state = 120}, + [267] = {.lex_state = 47}, + [268] = {.lex_state = 47}, + [269] = {.lex_state = 47}, + [270] = {.lex_state = 47}, + [271] = {.lex_state = 47}, + [272] = {.lex_state = 47}, + [273] = {.lex_state = 47}, + [274] = {.lex_state = 47}, + [275] = {.lex_state = 47}, + [276] = {.lex_state = 47}, + [277] = {.lex_state = 47}, [278] = {.lex_state = 120}, [279] = {.lex_state = 120}, [280] = {.lex_state = 120}, [281] = {.lex_state = 120}, - [282] = {.lex_state = 47}, + [282] = {.lex_state = 120}, [283] = {.lex_state = 120}, - [284] = {.lex_state = 47}, + [284] = {.lex_state = 120}, [285] = {.lex_state = 47}, [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}, + [287] = {.lex_state = 120}, + [288] = {.lex_state = 120}, + [289] = {.lex_state = 120}, + [290] = {.lex_state = 120}, + [291] = {.lex_state = 120}, + [292] = {.lex_state = 120}, + [293] = {.lex_state = 120}, + [294] = {.lex_state = 120}, [295] = {.lex_state = 47}, [296] = {.lex_state = 47}, - [297] = {.lex_state = 47}, + [297] = {.lex_state = 120}, [298] = {.lex_state = 47}, [299] = {.lex_state = 47}, - [300] = {.lex_state = 47}, + [300] = {.lex_state = 120}, [301] = {.lex_state = 47}, - [302] = {.lex_state = 47}, - [303] = {.lex_state = 47}, + [302] = {.lex_state = 120}, + [303] = {.lex_state = 120}, [304] = {.lex_state = 47}, - [305] = {.lex_state = 47}, + [305] = {.lex_state = 120}, [306] = {.lex_state = 47}, - [307] = {.lex_state = 47}, + [307] = {.lex_state = 120}, [308] = {.lex_state = 47}, - [309] = {.lex_state = 120}, - [310] = {.lex_state = 120}, + [309] = {.lex_state = 47}, + [310] = {.lex_state = 47}, [311] = {.lex_state = 47}, - [312] = {.lex_state = 44}, - [313] = {.lex_state = 120}, + [312] = {.lex_state = 47}, + [313] = {.lex_state = 47}, [314] = {.lex_state = 120}, [315] = {.lex_state = 120}, [316] = {.lex_state = 120}, @@ -10009,7 +10560,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 120}, [345] = {.lex_state = 120}, [346] = {.lex_state = 120}, - [347] = {.lex_state = 120}, + [347] = {.lex_state = 44}, [348] = {.lex_state = 120}, [349] = {.lex_state = 120}, [350] = {.lex_state = 120}, @@ -10025,7 +10576,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [360] = {.lex_state = 120}, [361] = {.lex_state = 120}, [362] = {.lex_state = 120}, - [363] = {.lex_state = 120}, + [363] = {.lex_state = 44}, [364] = {.lex_state = 120}, [365] = {.lex_state = 120}, [366] = {.lex_state = 120}, @@ -10045,7 +10596,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 120}, [381] = {.lex_state = 120}, [382] = {.lex_state = 120}, - [383] = {.lex_state = 44}, + [383] = {.lex_state = 120}, [384] = {.lex_state = 120}, [385] = {.lex_state = 120}, [386] = {.lex_state = 120}, @@ -10058,68 +10609,68 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [393] = {.lex_state = 120}, [394] = {.lex_state = 120}, [395] = {.lex_state = 120}, - [396] = {.lex_state = 44}, - [397] = {.lex_state = 44}, + [396] = {.lex_state = 120}, + [397] = {.lex_state = 120}, [398] = {.lex_state = 120}, [399] = {.lex_state = 120}, - [400] = {.lex_state = 49}, - [401] = {.lex_state = 49}, - [402] = {.lex_state = 49}, - [403] = {.lex_state = 49}, - [404] = {.lex_state = 49}, - [405] = {.lex_state = 49}, - [406] = {.lex_state = 49}, - [407] = {.lex_state = 49}, - [408] = {.lex_state = 49}, + [400] = {.lex_state = 120}, + [401] = {.lex_state = 120}, + [402] = {.lex_state = 120}, + [403] = {.lex_state = 120}, + [404] = {.lex_state = 120}, + [405] = {.lex_state = 120}, + [406] = {.lex_state = 44}, + [407] = {.lex_state = 120}, + [408] = {.lex_state = 120}, [409] = {.lex_state = 44}, - [410] = {.lex_state = 49}, - [411] = {.lex_state = 53}, + [410] = {.lex_state = 44}, + [411] = {.lex_state = 120}, [412] = {.lex_state = 120}, - [413] = {.lex_state = 120}, - [414] = {.lex_state = 120}, - [415] = {.lex_state = 120}, - [416] = {.lex_state = 120}, - [417] = {.lex_state = 120}, - [418] = {.lex_state = 120}, - [419] = {.lex_state = 120}, - [420] = {.lex_state = 120}, - [421] = {.lex_state = 120}, - [422] = {.lex_state = 120}, - [423] = {.lex_state = 53}, - [424] = {.lex_state = 53}, - [425] = {.lex_state = 53}, - [426] = {.lex_state = 53}, - [427] = {.lex_state = 53}, - [428] = {.lex_state = 53}, - [429] = {.lex_state = 53}, - [430] = {.lex_state = 53}, - [431] = {.lex_state = 53}, + [413] = {.lex_state = 44}, + [414] = {.lex_state = 49}, + [415] = {.lex_state = 49}, + [416] = {.lex_state = 49}, + [417] = {.lex_state = 49}, + [418] = {.lex_state = 49}, + [419] = {.lex_state = 49}, + [420] = {.lex_state = 49}, + [421] = {.lex_state = 49}, + [422] = {.lex_state = 52}, + [423] = {.lex_state = 120}, + [424] = {.lex_state = 49}, + [425] = {.lex_state = 120}, + [426] = {.lex_state = 49}, + [427] = {.lex_state = 120}, + [428] = {.lex_state = 120}, + [429] = {.lex_state = 120}, + [430] = {.lex_state = 120}, + [431] = {.lex_state = 120}, [432] = {.lex_state = 120}, - [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 = 120}, - [442] = {.lex_state = 120}, - [443] = {.lex_state = 120}, - [444] = {.lex_state = 53}, + [433] = {.lex_state = 120}, + [434] = {.lex_state = 120}, + [435] = {.lex_state = 120}, + [436] = {.lex_state = 120}, + [437] = {.lex_state = 120}, + [438] = {.lex_state = 120}, + [439] = {.lex_state = 52}, + [440] = {.lex_state = 120}, + [441] = {.lex_state = 52}, + [442] = {.lex_state = 52}, + [443] = {.lex_state = 52}, + [444] = {.lex_state = 52}, [445] = {.lex_state = 52}, - [446] = {.lex_state = 57}, + [446] = {.lex_state = 52}, [447] = {.lex_state = 52}, - [448] = {.lex_state = 57}, - [449] = {.lex_state = 57}, + [448] = {.lex_state = 52}, + [449] = {.lex_state = 52}, [450] = {.lex_state = 52}, - [451] = {.lex_state = 120}, - [452] = {.lex_state = 120}, - [453] = {.lex_state = 120}, - [454] = {.lex_state = 120}, - [455] = {.lex_state = 120}, - [456] = {.lex_state = 120}, - [457] = {.lex_state = 120}, + [451] = {.lex_state = 52}, + [452] = {.lex_state = 52}, + [453] = {.lex_state = 52}, + [454] = {.lex_state = 52}, + [455] = {.lex_state = 52}, + [456] = {.lex_state = 52}, + [457] = {.lex_state = 52}, [458] = {.lex_state = 120}, [459] = {.lex_state = 120}, [460] = {.lex_state = 120}, @@ -10146,30 +10697,30 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [481] = {.lex_state = 120}, [482] = {.lex_state = 120}, [483] = {.lex_state = 120}, - [484] = {.lex_state = 53}, + [484] = {.lex_state = 120}, [485] = {.lex_state = 120}, [486] = {.lex_state = 120}, [487] = {.lex_state = 120}, - [488] = {.lex_state = 53}, + [488] = {.lex_state = 120}, [489] = {.lex_state = 120}, [490] = {.lex_state = 120}, [491] = {.lex_state = 53}, [492] = {.lex_state = 120}, [493] = {.lex_state = 53}, - [494] = {.lex_state = 120}, + [494] = {.lex_state = 57}, [495] = {.lex_state = 120}, [496] = {.lex_state = 120}, [497] = {.lex_state = 120}, - [498] = {.lex_state = 120}, + [498] = {.lex_state = 53}, [499] = {.lex_state = 120}, [500] = {.lex_state = 120}, [501] = {.lex_state = 120}, [502] = {.lex_state = 120}, - [503] = {.lex_state = 120}, + [503] = {.lex_state = 57}, [504] = {.lex_state = 120}, [505] = {.lex_state = 120}, [506] = {.lex_state = 120}, - [507] = {.lex_state = 120}, + [507] = {.lex_state = 57}, [508] = {.lex_state = 120}, [509] = {.lex_state = 120}, [510] = {.lex_state = 120}, @@ -10189,7 +10740,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 120}, [525] = {.lex_state = 120}, [526] = {.lex_state = 120}, - [527] = {.lex_state = 49}, + [527] = {.lex_state = 120}, [528] = {.lex_state = 120}, [529] = {.lex_state = 120}, [530] = {.lex_state = 120}, @@ -10282,437 +10833,437 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 120}, [618] = {.lex_state = 120}, [619] = {.lex_state = 120}, - [620] = {.lex_state = 49}, - [621] = {.lex_state = 49}, - [622] = {.lex_state = 49}, - [623] = {.lex_state = 53}, - [624] = {.lex_state = 53}, - [625] = {.lex_state = 49}, - [626] = {.lex_state = 53}, - [627] = {.lex_state = 49}, - [628] = {.lex_state = 50}, - [629] = {.lex_state = 50}, - [630] = {.lex_state = 50}, - [631] = {.lex_state = 50}, - [632] = {.lex_state = 50}, - [633] = {.lex_state = 50}, - [634] = {.lex_state = 50}, - [635] = {.lex_state = 50}, + [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 = 120}, + [629] = {.lex_state = 52}, + [630] = {.lex_state = 52}, + [631] = {.lex_state = 52}, + [632] = {.lex_state = 52}, + [633] = {.lex_state = 49}, + [634] = {.lex_state = 52}, + [635] = {.lex_state = 52}, [636] = {.lex_state = 49}, - [637] = {.lex_state = 50}, - [638] = {.lex_state = 50}, - [639] = {.lex_state = 53}, - [640] = {.lex_state = 53}, - [641] = {.lex_state = 53}, - [642] = {.lex_state = 53}, - [643] = {.lex_state = 53}, - [644] = {.lex_state = 53}, - [645] = {.lex_state = 53}, - [646] = {.lex_state = 53}, - [647] = {.lex_state = 53}, - [648] = {.lex_state = 53}, - [649] = {.lex_state = 53}, - [650] = {.lex_state = 53}, - [651] = {.lex_state = 53}, - [652] = {.lex_state = 53}, - [653] = {.lex_state = 120}, - [654] = {.lex_state = 53}, - [655] = {.lex_state = 53}, - [656] = {.lex_state = 120}, - [657] = {.lex_state = 53}, - [658] = {.lex_state = 53}, - [659] = {.lex_state = 120}, - [660] = {.lex_state = 53}, - [661] = {.lex_state = 53}, - [662] = {.lex_state = 120}, - [663] = {.lex_state = 49}, + [637] = {.lex_state = 49}, + [638] = {.lex_state = 52}, + [639] = {.lex_state = 49}, + [640] = {.lex_state = 52}, + [641] = {.lex_state = 52}, + [642] = {.lex_state = 52}, + [643] = {.lex_state = 52}, + [644] = {.lex_state = 52}, + [645] = {.lex_state = 52}, + [646] = {.lex_state = 52}, + [647] = {.lex_state = 52}, + [648] = {.lex_state = 120}, + [649] = {.lex_state = 120}, + [650] = {.lex_state = 49}, + [651] = {.lex_state = 120}, + [652] = {.lex_state = 52}, + [653] = {.lex_state = 52}, + [654] = {.lex_state = 52}, + [655] = {.lex_state = 120}, + [656] = {.lex_state = 50}, + [657] = {.lex_state = 52}, + [658] = {.lex_state = 52}, + [659] = {.lex_state = 49}, + [660] = {.lex_state = 50}, + [661] = {.lex_state = 50}, + [662] = {.lex_state = 52}, + [663] = {.lex_state = 52}, [664] = {.lex_state = 50}, - [665] = {.lex_state = 53}, - [666] = {.lex_state = 53}, + [665] = {.lex_state = 50}, + [666] = {.lex_state = 52}, [667] = {.lex_state = 50}, [668] = {.lex_state = 50}, - [669] = {.lex_state = 50}, + [669] = {.lex_state = 52}, [670] = {.lex_state = 50}, [671] = {.lex_state = 50}, [672] = {.lex_state = 50}, - [673] = {.lex_state = 50}, - [674] = {.lex_state = 50}, - [675] = {.lex_state = 50}, - [676] = {.lex_state = 53}, - [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 = 53}, - [686] = {.lex_state = 53}, - [687] = {.lex_state = 53}, - [688] = {.lex_state = 53}, - [689] = {.lex_state = 53}, + [673] = {.lex_state = 49}, + [674] = {.lex_state = 52}, + [675] = {.lex_state = 52}, + [676] = {.lex_state = 52}, + [677] = {.lex_state = 52}, + [678] = {.lex_state = 52}, + [679] = {.lex_state = 52}, + [680] = {.lex_state = 52}, + [681] = {.lex_state = 52}, + [682] = {.lex_state = 120}, + [683] = {.lex_state = 52}, + [684] = {.lex_state = 120}, + [685] = {.lex_state = 52}, + [686] = {.lex_state = 52}, + [687] = {.lex_state = 52}, + [688] = {.lex_state = 52}, + [689] = {.lex_state = 49}, [690] = {.lex_state = 50}, [691] = {.lex_state = 50}, [692] = {.lex_state = 50}, - [693] = {.lex_state = 51}, - [694] = {.lex_state = 120}, - [695] = {.lex_state = 53}, - [696] = {.lex_state = 51}, + [693] = {.lex_state = 50}, + [694] = {.lex_state = 50}, + [695] = {.lex_state = 50}, + [696] = {.lex_state = 50}, [697] = {.lex_state = 50}, - [698] = {.lex_state = 51}, + [698] = {.lex_state = 50}, [699] = {.lex_state = 50}, - [700] = {.lex_state = 120}, + [700] = {.lex_state = 52}, [701] = {.lex_state = 50}, [702] = {.lex_state = 50}, - [703] = {.lex_state = 53}, - [704] = {.lex_state = 53}, - [705] = {.lex_state = 53}, - [706] = {.lex_state = 53}, - [707] = {.lex_state = 53}, - [708] = {.lex_state = 53}, - [709] = {.lex_state = 53}, - [710] = {.lex_state = 53}, - [711] = {.lex_state = 53}, - [712] = {.lex_state = 53}, - [713] = {.lex_state = 49}, - [714] = {.lex_state = 49}, - [715] = {.lex_state = 49}, - [716] = {.lex_state = 53}, - [717] = {.lex_state = 53}, - [718] = {.lex_state = 53}, - [719] = {.lex_state = 53}, - [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 = 49}, - [779] = {.lex_state = 53}, - [780] = {.lex_state = 53}, - [781] = {.lex_state = 53}, - [782] = {.lex_state = 53}, - [783] = {.lex_state = 49}, - [784] = {.lex_state = 53}, - [785] = {.lex_state = 53}, - [786] = {.lex_state = 49}, - [787] = {.lex_state = 53}, - [788] = {.lex_state = 53}, - [789] = {.lex_state = 53}, - [790] = {.lex_state = 49}, - [791] = {.lex_state = 53}, - [792] = {.lex_state = 53}, - [793] = {.lex_state = 49}, - [794] = {.lex_state = 49}, - [795] = {.lex_state = 53}, - [796] = {.lex_state = 53}, - [797] = {.lex_state = 53}, - [798] = {.lex_state = 53}, - [799] = {.lex_state = 53}, - [800] = {.lex_state = 53}, - [801] = {.lex_state = 53}, - [802] = {.lex_state = 53}, - [803] = {.lex_state = 53}, - [804] = {.lex_state = 53}, - [805] = {.lex_state = 50}, - [806] = {.lex_state = 50}, - [807] = {.lex_state = 50}, - [808] = {.lex_state = 50}, - [809] = {.lex_state = 50}, - [810] = {.lex_state = 50}, - [811] = {.lex_state = 50}, - [812] = {.lex_state = 50}, - [813] = {.lex_state = 50}, - [814] = {.lex_state = 50}, - [815] = {.lex_state = 53}, - [816] = {.lex_state = 53}, - [817] = {.lex_state = 50}, - [818] = {.lex_state = 53}, - [819] = {.lex_state = 53}, - [820] = {.lex_state = 53}, - [821] = {.lex_state = 53}, - [822] = {.lex_state = 53}, - [823] = {.lex_state = 53}, - [824] = {.lex_state = 53}, - [825] = {.lex_state = 53}, - [826] = {.lex_state = 53}, + [703] = {.lex_state = 50}, + [704] = {.lex_state = 50}, + [705] = {.lex_state = 50}, + [706] = {.lex_state = 52}, + [707] = {.lex_state = 50}, + [708] = {.lex_state = 50}, + [709] = {.lex_state = 50}, + [710] = {.lex_state = 50}, + [711] = {.lex_state = 50}, + [712] = {.lex_state = 50}, + [713] = {.lex_state = 50}, + [714] = {.lex_state = 52}, + [715] = {.lex_state = 52}, + [716] = {.lex_state = 52}, + [717] = {.lex_state = 50}, + [718] = {.lex_state = 50}, + [719] = {.lex_state = 51}, + [720] = {.lex_state = 50}, + [721] = {.lex_state = 51}, + [722] = {.lex_state = 50}, + [723] = {.lex_state = 52}, + [724] = {.lex_state = 52}, + [725] = {.lex_state = 52}, + [726] = {.lex_state = 52}, + [727] = {.lex_state = 50}, + [728] = {.lex_state = 50}, + [729] = {.lex_state = 51}, + [730] = {.lex_state = 52}, + [731] = {.lex_state = 52}, + [732] = {.lex_state = 49}, + [733] = {.lex_state = 52}, + [734] = {.lex_state = 52}, + [735] = {.lex_state = 49}, + [736] = {.lex_state = 49}, + [737] = {.lex_state = 52}, + [738] = {.lex_state = 52}, + [739] = {.lex_state = 52}, + [740] = {.lex_state = 52}, + [741] = {.lex_state = 52}, + [742] = {.lex_state = 52}, + [743] = {.lex_state = 52}, + [744] = {.lex_state = 52}, + [745] = {.lex_state = 52}, + [746] = {.lex_state = 52}, + [747] = {.lex_state = 52}, + [748] = {.lex_state = 52}, + [749] = {.lex_state = 52}, + [750] = {.lex_state = 52}, + [751] = {.lex_state = 52}, + [752] = {.lex_state = 52}, + [753] = {.lex_state = 52}, + [754] = {.lex_state = 52}, + [755] = {.lex_state = 52}, + [756] = {.lex_state = 52}, + [757] = {.lex_state = 52}, + [758] = {.lex_state = 52}, + [759] = {.lex_state = 52}, + [760] = {.lex_state = 52}, + [761] = {.lex_state = 52}, + [762] = {.lex_state = 52}, + [763] = {.lex_state = 52}, + [764] = {.lex_state = 52}, + [765] = {.lex_state = 52}, + [766] = {.lex_state = 52}, + [767] = {.lex_state = 52}, + [768] = {.lex_state = 52}, + [769] = {.lex_state = 52}, + [770] = {.lex_state = 52}, + [771] = {.lex_state = 52}, + [772] = {.lex_state = 52}, + [773] = {.lex_state = 52}, + [774] = {.lex_state = 52}, + [775] = {.lex_state = 52}, + [776] = {.lex_state = 52}, + [777] = {.lex_state = 52}, + [778] = {.lex_state = 52}, + [779] = {.lex_state = 52}, + [780] = {.lex_state = 52}, + [781] = {.lex_state = 52}, + [782] = {.lex_state = 52}, + [783] = {.lex_state = 52}, + [784] = {.lex_state = 52}, + [785] = {.lex_state = 52}, + [786] = {.lex_state = 52}, + [787] = {.lex_state = 52}, + [788] = {.lex_state = 52}, + [789] = {.lex_state = 52}, + [790] = {.lex_state = 52}, + [791] = {.lex_state = 52}, + [792] = {.lex_state = 52}, + [793] = {.lex_state = 52}, + [794] = {.lex_state = 52}, + [795] = {.lex_state = 52}, + [796] = {.lex_state = 52}, + [797] = {.lex_state = 52}, + [798] = {.lex_state = 52}, + [799] = {.lex_state = 52}, + [800] = {.lex_state = 52}, + [801] = {.lex_state = 52}, + [802] = {.lex_state = 52}, + [803] = {.lex_state = 52}, + [804] = {.lex_state = 52}, + [805] = {.lex_state = 52}, + [806] = {.lex_state = 52}, + [807] = {.lex_state = 52}, + [808] = {.lex_state = 52}, + [809] = {.lex_state = 52}, + [810] = {.lex_state = 52}, + [811] = {.lex_state = 52}, + [812] = {.lex_state = 52}, + [813] = {.lex_state = 52}, + [814] = {.lex_state = 52}, + [815] = {.lex_state = 52}, + [816] = {.lex_state = 49}, + [817] = {.lex_state = 49}, + [818] = {.lex_state = 52}, + [819] = {.lex_state = 49}, + [820] = {.lex_state = 52}, + [821] = {.lex_state = 52}, + [822] = {.lex_state = 49}, + [823] = {.lex_state = 52}, + [824] = {.lex_state = 52}, + [825] = {.lex_state = 49}, + [826] = {.lex_state = 52}, [827] = {.lex_state = 49}, - [828] = {.lex_state = 53}, - [829] = {.lex_state = 53}, - [830] = {.lex_state = 53}, - [831] = {.lex_state = 53}, + [828] = {.lex_state = 52}, + [829] = {.lex_state = 52}, + [830] = {.lex_state = 49}, + [831] = {.lex_state = 52}, [832] = {.lex_state = 50}, [833] = {.lex_state = 50}, - [834] = {.lex_state = 53}, + [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 = 53}, - [841] = {.lex_state = 53}, - [842] = {.lex_state = 52}, - [843] = {.lex_state = 52}, + [836] = {.lex_state = 50}, + [837] = {.lex_state = 50}, + [838] = {.lex_state = 50}, + [839] = {.lex_state = 50}, + [840] = {.lex_state = 50}, + [841] = {.lex_state = 50}, + [842] = {.lex_state = 50}, + [843] = {.lex_state = 50}, [844] = {.lex_state = 52}, [845] = {.lex_state = 52}, - [846] = {.lex_state = 52}, - [847] = {.lex_state = 57}, - [848] = {.lex_state = 53}, - [849] = {.lex_state = 57}, - [850] = {.lex_state = 57}, - [851] = {.lex_state = 57}, - [852] = {.lex_state = 57}, - [853] = {.lex_state = 57}, - [854] = {.lex_state = 57}, - [855] = {.lex_state = 57}, - [856] = {.lex_state = 57}, - [857] = {.lex_state = 57}, - [858] = {.lex_state = 57}, - [859] = {.lex_state = 57}, + [846] = {.lex_state = 50}, + [847] = {.lex_state = 52}, + [848] = {.lex_state = 52}, + [849] = {.lex_state = 52}, + [850] = {.lex_state = 52}, + [851] = {.lex_state = 52}, + [852] = {.lex_state = 52}, + [853] = {.lex_state = 52}, + [854] = {.lex_state = 52}, + [855] = {.lex_state = 52}, + [856] = {.lex_state = 52}, + [857] = {.lex_state = 52}, + [858] = {.lex_state = 52}, + [859] = {.lex_state = 50}, [860] = {.lex_state = 52}, [861] = {.lex_state = 52}, [862] = {.lex_state = 52}, - [863] = {.lex_state = 52}, - [864] = {.lex_state = 52}, - [865] = {.lex_state = 52}, - [866] = {.lex_state = 57}, - [867] = {.lex_state = 57}, - [868] = {.lex_state = 57}, - [869] = {.lex_state = 57}, + [863] = {.lex_state = 53}, + [864] = {.lex_state = 49}, + [865] = {.lex_state = 53}, + [866] = {.lex_state = 53}, + [867] = {.lex_state = 53}, + [868] = {.lex_state = 53}, + [869] = {.lex_state = 53}, [870] = {.lex_state = 57}, - [871] = {.lex_state = 57}, - [872] = {.lex_state = 52}, - [873] = {.lex_state = 49}, - [874] = {.lex_state = 53}, - [875] = {.lex_state = 52}, - [876] = {.lex_state = 52}, - [877] = {.lex_state = 49}, - [878] = {.lex_state = 52}, - [879] = {.lex_state = 52}, - [880] = {.lex_state = 52}, - [881] = {.lex_state = 49}, - [882] = {.lex_state = 49}, - [883] = {.lex_state = 53}, - [884] = {.lex_state = 52}, - [885] = {.lex_state = 49}, + [871] = {.lex_state = 53}, + [872] = {.lex_state = 53}, + [873] = {.lex_state = 57}, + [874] = {.lex_state = 57}, + [875] = {.lex_state = 57}, + [876] = {.lex_state = 57}, + [877] = {.lex_state = 57}, + [878] = {.lex_state = 57}, + [879] = {.lex_state = 57}, + [880] = {.lex_state = 57}, + [881] = {.lex_state = 57}, + [882] = {.lex_state = 57}, + [883] = {.lex_state = 57}, + [884] = {.lex_state = 53}, + [885] = {.lex_state = 53}, [886] = {.lex_state = 53}, - [887] = {.lex_state = 53}, - [888] = {.lex_state = 49}, - [889] = {.lex_state = 49}, + [887] = {.lex_state = 120}, + [888] = {.lex_state = 120}, + [889] = {.lex_state = 53}, [890] = {.lex_state = 53}, - [891] = {.lex_state = 49}, - [892] = {.lex_state = 49}, - [893] = {.lex_state = 49}, - [894] = {.lex_state = 49}, - [895] = {.lex_state = 49}, - [896] = {.lex_state = 49}, - [897] = {.lex_state = 49}, - [898] = {.lex_state = 49}, - [899] = {.lex_state = 49}, - [900] = {.lex_state = 49}, - [901] = {.lex_state = 49}, - [902] = {.lex_state = 49}, - [903] = {.lex_state = 53}, - [904] = {.lex_state = 53}, - [905] = {.lex_state = 49}, - [906] = {.lex_state = 49}, - [907] = {.lex_state = 49}, + [891] = {.lex_state = 120}, + [892] = {.lex_state = 120}, + [893] = {.lex_state = 120}, + [894] = {.lex_state = 120}, + [895] = {.lex_state = 53}, + [896] = {.lex_state = 120}, + [897] = {.lex_state = 120}, + [898] = {.lex_state = 120}, + [899] = {.lex_state = 120}, + [900] = {.lex_state = 53}, + [901] = {.lex_state = 53}, + [902] = {.lex_state = 57}, + [903] = {.lex_state = 57}, + [904] = {.lex_state = 57}, + [905] = {.lex_state = 57}, + [906] = {.lex_state = 57}, + [907] = {.lex_state = 57}, [908] = {.lex_state = 53}, - [909] = {.lex_state = 49}, + [909] = {.lex_state = 52}, [910] = {.lex_state = 49}, - [911] = {.lex_state = 49}, - [912] = {.lex_state = 53}, - [913] = {.lex_state = 120}, - [914] = {.lex_state = 120}, - [915] = {.lex_state = 120}, - [916] = {.lex_state = 49}, - [917] = {.lex_state = 49}, - [918] = {.lex_state = 120}, - [919] = {.lex_state = 120}, - [920] = {.lex_state = 120}, - [921] = {.lex_state = 120}, - [922] = {.lex_state = 120}, - [923] = {.lex_state = 120}, - [924] = {.lex_state = 53}, - [925] = {.lex_state = 120}, - [926] = {.lex_state = 53}, - [927] = {.lex_state = 53}, + [911] = {.lex_state = 52}, + [912] = {.lex_state = 49}, + [913] = {.lex_state = 49}, + [914] = {.lex_state = 53}, + [915] = {.lex_state = 52}, + [916] = {.lex_state = 52}, + [917] = {.lex_state = 52}, + [918] = {.lex_state = 52}, + [919] = {.lex_state = 52}, + [920] = {.lex_state = 52}, + [921] = {.lex_state = 52}, + [922] = {.lex_state = 52}, + [923] = {.lex_state = 49}, + [924] = {.lex_state = 49}, + [925] = {.lex_state = 49}, + [926] = {.lex_state = 49}, + [927] = {.lex_state = 49}, [928] = {.lex_state = 49}, - [929] = {.lex_state = 53}, - [930] = {.lex_state = 53}, - [931] = {.lex_state = 53}, - [932] = {.lex_state = 53}, - [933] = {.lex_state = 53}, - [934] = {.lex_state = 53}, - [935] = {.lex_state = 53}, - [936] = {.lex_state = 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 = 50}, - [964] = {.lex_state = 50}, - [965] = {.lex_state = 50}, - [966] = {.lex_state = 50}, - [967] = {.lex_state = 50}, - [968] = {.lex_state = 50}, - [969] = {.lex_state = 50}, - [970] = {.lex_state = 50}, - [971] = {.lex_state = 50}, - [972] = {.lex_state = 50}, - [973] = {.lex_state = 50}, - [974] = {.lex_state = 50}, - [975] = {.lex_state = 53}, - [976] = {.lex_state = 53}, - [977] = {.lex_state = 53}, - [978] = {.lex_state = 53}, - [979] = {.lex_state = 53}, - [980] = {.lex_state = 53}, - [981] = {.lex_state = 50}, - [982] = {.lex_state = 53}, - [983] = {.lex_state = 50}, - [984] = {.lex_state = 53}, - [985] = {.lex_state = 53}, + [929] = {.lex_state = 49}, + [930] = {.lex_state = 49}, + [931] = {.lex_state = 49}, + [932] = {.lex_state = 49}, + [933] = {.lex_state = 52}, + [934] = {.lex_state = 49}, + [935] = {.lex_state = 49}, + [936] = {.lex_state = 49}, + [937] = {.lex_state = 49}, + [938] = {.lex_state = 49}, + [939] = {.lex_state = 49}, + [940] = {.lex_state = 49}, + [941] = {.lex_state = 49}, + [942] = {.lex_state = 49}, + [943] = {.lex_state = 49}, + [944] = {.lex_state = 52}, + [945] = {.lex_state = 52}, + [946] = {.lex_state = 49}, + [947] = {.lex_state = 49}, + [948] = {.lex_state = 49}, + [949] = {.lex_state = 52}, + [950] = {.lex_state = 52}, + [951] = {.lex_state = 52}, + [952] = {.lex_state = 52}, + [953] = {.lex_state = 52}, + [954] = {.lex_state = 52}, + [955] = {.lex_state = 52}, + [956] = {.lex_state = 52}, + [957] = {.lex_state = 52}, + [958] = {.lex_state = 49}, + [959] = {.lex_state = 52}, + [960] = {.lex_state = 52}, + [961] = {.lex_state = 52}, + [962] = {.lex_state = 52}, + [963] = {.lex_state = 52}, + [964] = {.lex_state = 52}, + [965] = {.lex_state = 52}, + [966] = {.lex_state = 52}, + [967] = {.lex_state = 52}, + [968] = {.lex_state = 52}, + [969] = {.lex_state = 52}, + [970] = {.lex_state = 52}, + [971] = {.lex_state = 52}, + [972] = {.lex_state = 52}, + [973] = {.lex_state = 52}, + [974] = {.lex_state = 52}, + [975] = {.lex_state = 52}, + [976] = {.lex_state = 52}, + [977] = {.lex_state = 52}, + [978] = {.lex_state = 52}, + [979] = {.lex_state = 52}, + [980] = {.lex_state = 52}, + [981] = {.lex_state = 52}, + [982] = {.lex_state = 52}, + [983] = {.lex_state = 52}, + [984] = {.lex_state = 52}, + [985] = {.lex_state = 52}, [986] = {.lex_state = 52}, - [987] = {.lex_state = 53}, - [988] = {.lex_state = 53}, - [989] = {.lex_state = 53}, - [990] = {.lex_state = 53}, + [987] = {.lex_state = 52}, + [988] = {.lex_state = 52}, + [989] = {.lex_state = 52}, + [990] = {.lex_state = 52}, [991] = {.lex_state = 52}, - [992] = {.lex_state = 53}, - [993] = {.lex_state = 53}, - [994] = {.lex_state = 53}, - [995] = {.lex_state = 53}, - [996] = {.lex_state = 53}, - [997] = {.lex_state = 53}, + [992] = {.lex_state = 52}, + [993] = {.lex_state = 52}, + [994] = {.lex_state = 52}, + [995] = {.lex_state = 52}, + [996] = {.lex_state = 52}, + [997] = {.lex_state = 52}, [998] = {.lex_state = 52}, - [999] = {.lex_state = 53}, - [1000] = {.lex_state = 53}, + [999] = {.lex_state = 52}, + [1000] = {.lex_state = 52}, [1001] = {.lex_state = 52}, - [1002] = {.lex_state = 53}, - [1003] = {.lex_state = 53}, - [1004] = {.lex_state = 53}, - [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}, - [1012] = {.lex_state = 49}, - [1013] = {.lex_state = 53}, - [1014] = {.lex_state = 53}, - [1015] = {.lex_state = 49}, - [1016] = {.lex_state = 49}, - [1017] = {.lex_state = 49}, - [1018] = {.lex_state = 49}, - [1019] = {.lex_state = 49}, - [1020] = {.lex_state = 49}, - [1021] = {.lex_state = 53}, - [1022] = {.lex_state = 49}, - [1023] = {.lex_state = 49}, - [1024] = {.lex_state = 49}, - [1025] = {.lex_state = 49}, - [1026] = {.lex_state = 53}, - [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}, + [1002] = {.lex_state = 50}, + [1003] = {.lex_state = 50}, + [1004] = {.lex_state = 50}, + [1005] = {.lex_state = 50}, + [1006] = {.lex_state = 50}, + [1007] = {.lex_state = 50}, + [1008] = {.lex_state = 50}, + [1009] = {.lex_state = 50}, + [1010] = {.lex_state = 52}, + [1011] = {.lex_state = 50}, + [1012] = {.lex_state = 52}, + [1013] = {.lex_state = 52}, + [1014] = {.lex_state = 52}, + [1015] = {.lex_state = 52}, + [1016] = {.lex_state = 52}, + [1017] = {.lex_state = 52}, + [1018] = {.lex_state = 52}, + [1019] = {.lex_state = 52}, + [1020] = {.lex_state = 52}, + [1021] = {.lex_state = 52}, + [1022] = {.lex_state = 52}, + [1023] = {.lex_state = 52}, + [1024] = {.lex_state = 52}, + [1025] = {.lex_state = 50}, + [1026] = {.lex_state = 52}, + [1027] = {.lex_state = 52}, + [1028] = {.lex_state = 52}, + [1029] = {.lex_state = 50}, + [1030] = {.lex_state = 50}, + [1031] = {.lex_state = 50}, + [1032] = {.lex_state = 50}, + [1033] = {.lex_state = 53}, + [1034] = {.lex_state = 53}, + [1035] = {.lex_state = 53}, + [1036] = {.lex_state = 53}, + [1037] = {.lex_state = 52}, + [1038] = {.lex_state = 52}, + [1039] = {.lex_state = 52}, + [1040] = {.lex_state = 52}, + [1041] = {.lex_state = 52}, [1042] = {.lex_state = 49}, [1043] = {.lex_state = 49}, - [1044] = {.lex_state = 53}, + [1044] = {.lex_state = 52}, [1045] = {.lex_state = 49}, [1046] = {.lex_state = 49}, [1047] = {.lex_state = 49}, - [1048] = {.lex_state = 49}, - [1049] = {.lex_state = 49}, - [1050] = {.lex_state = 53}, + [1048] = {.lex_state = 52}, + [1049] = {.lex_state = 52}, + [1050] = {.lex_state = 49}, [1051] = {.lex_state = 49}, [1052] = {.lex_state = 49}, [1053] = {.lex_state = 49}, @@ -10730,565 +11281,565 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1065] = {.lex_state = 49}, [1066] = {.lex_state = 49}, [1067] = {.lex_state = 49}, - [1068] = {.lex_state = 53}, + [1068] = {.lex_state = 49}, [1069] = {.lex_state = 49}, [1070] = {.lex_state = 49}, [1071] = {.lex_state = 49}, [1072] = {.lex_state = 49}, [1073] = {.lex_state = 49}, - [1074] = {.lex_state = 53}, + [1074] = {.lex_state = 49}, [1075] = {.lex_state = 49}, [1076] = {.lex_state = 49}, - [1077] = {.lex_state = 53}, + [1077] = {.lex_state = 49}, [1078] = {.lex_state = 49}, - [1079] = {.lex_state = 53}, + [1079] = {.lex_state = 49}, [1080] = {.lex_state = 49}, [1081] = {.lex_state = 49}, [1082] = {.lex_state = 49}, [1083] = {.lex_state = 49}, [1084] = {.lex_state = 49}, [1085] = {.lex_state = 49}, - [1086] = {.lex_state = 53}, + [1086] = {.lex_state = 49}, [1087] = {.lex_state = 49}, [1088] = {.lex_state = 49}, [1089] = {.lex_state = 49}, [1090] = {.lex_state = 49}, [1091] = {.lex_state = 49}, [1092] = {.lex_state = 49}, - [1093] = {.lex_state = 53}, + [1093] = {.lex_state = 49}, [1094] = {.lex_state = 49}, [1095] = {.lex_state = 49}, [1096] = {.lex_state = 49}, [1097] = {.lex_state = 49}, - [1098] = {.lex_state = 53}, + [1098] = {.lex_state = 49}, [1099] = {.lex_state = 49}, [1100] = {.lex_state = 49}, [1101] = {.lex_state = 49}, - [1102] = {.lex_state = 53}, + [1102] = {.lex_state = 49}, [1103] = {.lex_state = 49}, - [1104] = {.lex_state = 53}, - [1105] = {.lex_state = 53}, - [1106] = {.lex_state = 53}, - [1107] = {.lex_state = 53}, - [1108] = {.lex_state = 53}, - [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 = 53}, - [1117] = {.lex_state = 53}, - [1118] = {.lex_state = 53}, - [1119] = {.lex_state = 53}, - [1120] = {.lex_state = 53}, - [1121] = {.lex_state = 52}, - [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 = 23}, - [1142] = {.lex_state = 53}, - [1143] = {.lex_state = 53}, - [1144] = {.lex_state = 53}, - [1145] = {.lex_state = 53}, - [1146] = {.lex_state = 48}, - [1147] = {.lex_state = 53}, - [1148] = {.lex_state = 53}, + [1104] = {.lex_state = 49}, + [1105] = {.lex_state = 49}, + [1106] = {.lex_state = 49}, + [1107] = {.lex_state = 49}, + [1108] = {.lex_state = 49}, + [1109] = {.lex_state = 52}, + [1110] = {.lex_state = 52}, + [1111] = {.lex_state = 52}, + [1112] = {.lex_state = 52}, + [1113] = {.lex_state = 49}, + [1114] = {.lex_state = 49}, + [1115] = {.lex_state = 49}, + [1116] = {.lex_state = 49}, + [1117] = {.lex_state = 52}, + [1118] = {.lex_state = 52}, + [1119] = {.lex_state = 49}, + [1120] = {.lex_state = 49}, + [1121] = {.lex_state = 49}, + [1122] = {.lex_state = 49}, + [1123] = {.lex_state = 49}, + [1124] = {.lex_state = 49}, + [1125] = {.lex_state = 49}, + [1126] = {.lex_state = 52}, + [1127] = {.lex_state = 49}, + [1128] = {.lex_state = 52}, + [1129] = {.lex_state = 49}, + [1130] = {.lex_state = 49}, + [1131] = {.lex_state = 52}, + [1132] = {.lex_state = 52}, + [1133] = {.lex_state = 49}, + [1134] = {.lex_state = 49}, + [1135] = {.lex_state = 52}, + [1136] = {.lex_state = 52}, + [1137] = {.lex_state = 52}, + [1138] = {.lex_state = 52}, + [1139] = {.lex_state = 52}, + [1140] = {.lex_state = 52}, + [1141] = {.lex_state = 52}, + [1142] = {.lex_state = 52}, + [1143] = {.lex_state = 52}, + [1144] = {.lex_state = 52}, + [1145] = {.lex_state = 52}, + [1146] = {.lex_state = 52}, + [1147] = {.lex_state = 52}, + [1148] = {.lex_state = 52}, [1149] = {.lex_state = 52}, - [1150] = {.lex_state = 48}, - [1151] = {.lex_state = 53}, + [1150] = {.lex_state = 52}, + [1151] = {.lex_state = 52}, [1152] = {.lex_state = 52}, [1153] = {.lex_state = 52}, - [1154] = {.lex_state = 53}, - [1155] = {.lex_state = 53}, - [1156] = {.lex_state = 53}, - [1157] = {.lex_state = 48}, - [1158] = {.lex_state = 53}, - [1159] = {.lex_state = 48}, - [1160] = {.lex_state = 48}, - [1161] = {.lex_state = 48}, - [1162] = {.lex_state = 48}, - [1163] = {.lex_state = 48}, - [1164] = {.lex_state = 48}, + [1154] = {.lex_state = 52}, + [1155] = {.lex_state = 52}, + [1156] = {.lex_state = 52}, + [1157] = {.lex_state = 52}, + [1158] = {.lex_state = 52}, + [1159] = {.lex_state = 52}, + [1160] = {.lex_state = 52}, + [1161] = {.lex_state = 52}, + [1162] = {.lex_state = 52}, + [1163] = {.lex_state = 52}, + [1164] = {.lex_state = 53}, [1165] = {.lex_state = 52}, - [1166] = {.lex_state = 48}, - [1167] = {.lex_state = 48}, - [1168] = {.lex_state = 48}, - [1169] = {.lex_state = 48}, - [1170] = {.lex_state = 48}, + [1166] = {.lex_state = 52}, + [1167] = {.lex_state = 52}, + [1168] = {.lex_state = 52}, + [1169] = {.lex_state = 52}, + [1170] = {.lex_state = 52}, [1171] = {.lex_state = 48}, - [1172] = {.lex_state = 48}, + [1172] = {.lex_state = 25}, [1173] = {.lex_state = 48}, - [1174] = {.lex_state = 48}, - [1175] = {.lex_state = 48}, - [1176] = {.lex_state = 48}, + [1174] = {.lex_state = 52}, + [1175] = {.lex_state = 52}, + [1176] = {.lex_state = 53}, [1177] = {.lex_state = 48}, - [1178] = {.lex_state = 48}, + [1178] = {.lex_state = 53}, [1179] = {.lex_state = 52}, - [1180] = {.lex_state = 48}, + [1180] = {.lex_state = 52}, [1181] = {.lex_state = 52}, [1182] = {.lex_state = 52}, - [1183] = {.lex_state = 48}, - [1184] = {.lex_state = 48}, - [1185] = {.lex_state = 48}, - [1186] = {.lex_state = 48}, - [1187] = {.lex_state = 48}, - [1188] = {.lex_state = 48}, + [1183] = {.lex_state = 52}, + [1184] = {.lex_state = 53}, + [1185] = {.lex_state = 52}, + [1186] = {.lex_state = 52}, + [1187] = {.lex_state = 52}, + [1188] = {.lex_state = 53}, [1189] = {.lex_state = 48}, [1190] = {.lex_state = 48}, - [1191] = {.lex_state = 52}, - [1192] = {.lex_state = 48}, - [1193] = {.lex_state = 52}, + [1191] = {.lex_state = 48}, + [1192] = {.lex_state = 53}, + [1193] = {.lex_state = 48}, [1194] = {.lex_state = 48}, [1195] = {.lex_state = 48}, - [1196] = {.lex_state = 52}, - [1197] = {.lex_state = 48}, + [1196] = {.lex_state = 48}, + [1197] = {.lex_state = 53}, [1198] = {.lex_state = 48}, - [1199] = {.lex_state = 48}, + [1199] = {.lex_state = 53}, [1200] = {.lex_state = 48}, - [1201] = {.lex_state = 52}, - [1202] = {.lex_state = 48}, - [1203] = {.lex_state = 52}, - [1204] = {.lex_state = 52}, - [1205] = {.lex_state = 48}, + [1201] = {.lex_state = 53}, + [1202] = {.lex_state = 53}, + [1203] = {.lex_state = 48}, + [1204] = {.lex_state = 48}, + [1205] = {.lex_state = 53}, [1206] = {.lex_state = 48}, - [1207] = {.lex_state = 52}, - [1208] = {.lex_state = 52}, - [1209] = {.lex_state = 52}, - [1210] = {.lex_state = 52}, - [1211] = {.lex_state = 52}, - [1212] = {.lex_state = 52}, - [1213] = {.lex_state = 48}, - [1214] = {.lex_state = 52}, - [1215] = {.lex_state = 23}, - [1216] = {.lex_state = 23}, - [1217] = {.lex_state = 23}, - [1218] = {.lex_state = 23}, - [1219] = {.lex_state = 23}, - [1220] = {.lex_state = 23}, - [1221] = {.lex_state = 23}, - [1222] = {.lex_state = 23}, - [1223] = {.lex_state = 23}, - [1224] = {.lex_state = 23}, - [1225] = {.lex_state = 23}, - [1226] = {.lex_state = 23}, - [1227] = {.lex_state = 23}, - [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 23}, - [1230] = {.lex_state = 23}, - [1231] = {.lex_state = 23}, - [1232] = {.lex_state = 52}, - [1233] = {.lex_state = 23}, - [1234] = {.lex_state = 23}, - [1235] = {.lex_state = 23}, - [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 23}, - [1238] = {.lex_state = 23}, - [1239] = {.lex_state = 23}, + [1207] = {.lex_state = 48}, + [1208] = {.lex_state = 53}, + [1209] = {.lex_state = 53}, + [1210] = {.lex_state = 48}, + [1211] = {.lex_state = 48}, + [1212] = {.lex_state = 48}, + [1213] = {.lex_state = 53}, + [1214] = {.lex_state = 48}, + [1215] = {.lex_state = 48}, + [1216] = {.lex_state = 48}, + [1217] = {.lex_state = 48}, + [1218] = {.lex_state = 48}, + [1219] = {.lex_state = 53}, + [1220] = {.lex_state = 53}, + [1221] = {.lex_state = 48}, + [1222] = {.lex_state = 48}, + [1223] = {.lex_state = 48}, + [1224] = {.lex_state = 48}, + [1225] = {.lex_state = 48}, + [1226] = {.lex_state = 48}, + [1227] = {.lex_state = 48}, + [1228] = {.lex_state = 48}, + [1229] = {.lex_state = 53}, + [1230] = {.lex_state = 48}, + [1231] = {.lex_state = 48}, + [1232] = {.lex_state = 48}, + [1233] = {.lex_state = 53}, + [1234] = {.lex_state = 48}, + [1235] = {.lex_state = 48}, + [1236] = {.lex_state = 48}, + [1237] = {.lex_state = 48}, + [1238] = {.lex_state = 48}, + [1239] = {.lex_state = 48}, [1240] = {.lex_state = 53}, - [1241] = {.lex_state = 23}, - [1242] = {.lex_state = 23}, - [1243] = {.lex_state = 53}, - [1244] = {.lex_state = 23}, - [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 23}, - [1247] = {.lex_state = 23}, - [1248] = {.lex_state = 53}, - [1249] = {.lex_state = 23}, - [1250] = {.lex_state = 23}, - [1251] = {.lex_state = 53}, - [1252] = {.lex_state = 23}, - [1253] = {.lex_state = 53}, - [1254] = {.lex_state = 53}, - [1255] = {.lex_state = 53}, - [1256] = {.lex_state = 53}, - [1257] = {.lex_state = 53}, - [1258] = {.lex_state = 53}, - [1259] = {.lex_state = 53}, - [1260] = {.lex_state = 53}, - [1261] = {.lex_state = 53}, - [1262] = {.lex_state = 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}, + [1241] = {.lex_state = 48}, + [1242] = {.lex_state = 53}, + [1243] = {.lex_state = 25}, + [1244] = {.lex_state = 25}, + [1245] = {.lex_state = 25}, + [1246] = {.lex_state = 25}, + [1247] = {.lex_state = 25}, + [1248] = {.lex_state = 25}, + [1249] = {.lex_state = 52}, + [1250] = {.lex_state = 25}, + [1251] = {.lex_state = 25}, + [1252] = {.lex_state = 52}, + [1253] = {.lex_state = 25}, + [1254] = {.lex_state = 52}, + [1255] = {.lex_state = 52}, + [1256] = {.lex_state = 25}, + [1257] = {.lex_state = 25}, + [1258] = {.lex_state = 25}, + [1259] = {.lex_state = 25}, + [1260] = {.lex_state = 25}, + [1261] = {.lex_state = 25}, + [1262] = {.lex_state = 25}, + [1263] = {.lex_state = 25}, + [1264] = {.lex_state = 25}, + [1265] = {.lex_state = 25}, + [1266] = {.lex_state = 25}, + [1267] = {.lex_state = 25}, + [1268] = {.lex_state = 52}, + [1269] = {.lex_state = 52}, + [1270] = {.lex_state = 52}, + [1271] = {.lex_state = 25}, + [1272] = {.lex_state = 25}, + [1273] = {.lex_state = 52}, + [1274] = {.lex_state = 52}, + [1275] = {.lex_state = 52}, [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 = 50}, - [1284] = {.lex_state = 53}, - [1285] = {.lex_state = 50}, - [1286] = {.lex_state = 50}, - [1287] = {.lex_state = 50}, + [1277] = {.lex_state = 25}, + [1278] = {.lex_state = 25}, + [1279] = {.lex_state = 25}, + [1280] = {.lex_state = 25}, + [1281] = {.lex_state = 52}, + [1282] = {.lex_state = 52}, + [1283] = {.lex_state = 25}, + [1284] = {.lex_state = 25}, + [1285] = {.lex_state = 25}, + [1286] = {.lex_state = 25}, + [1287] = {.lex_state = 25}, [1288] = {.lex_state = 53}, - [1289] = {.lex_state = 53}, - [1290] = {.lex_state = 53}, - [1291] = {.lex_state = 53}, - [1292] = {.lex_state = 53}, - [1293] = {.lex_state = 53}, - [1294] = {.lex_state = 53}, - [1295] = {.lex_state = 53}, - [1296] = {.lex_state = 56}, - [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 = 56}, - [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 = 53}, - [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 = 50}, - [1325] = {.lex_state = 53}, - [1326] = {.lex_state = 53}, - [1327] = {.lex_state = 50}, - [1328] = {.lex_state = 49}, - [1329] = {.lex_state = 50}, - [1330] = {.lex_state = 50}, - [1331] = {.lex_state = 53}, - [1332] = {.lex_state = 56}, - [1333] = {.lex_state = 53}, - [1334] = {.lex_state = 50}, - [1335] = {.lex_state = 53}, - [1336] = {.lex_state = 53}, - [1337] = {.lex_state = 53}, - [1338] = {.lex_state = 53}, - [1339] = {.lex_state = 50}, - [1340] = {.lex_state = 50}, - [1341] = {.lex_state = 53}, - [1342] = {.lex_state = 50}, - [1343] = {.lex_state = 50}, - [1344] = {.lex_state = 53}, - [1345] = {.lex_state = 50}, - [1346] = {.lex_state = 50}, - [1347] = {.lex_state = 50}, - [1348] = {.lex_state = 53}, - [1349] = {.lex_state = 53}, - [1350] = {.lex_state = 53}, - [1351] = {.lex_state = 50}, - [1352] = {.lex_state = 53}, - [1353] = {.lex_state = 53}, - [1354] = {.lex_state = 50}, - [1355] = {.lex_state = 53}, - [1356] = {.lex_state = 120}, - [1357] = {.lex_state = 53}, - [1358] = {.lex_state = 53}, - [1359] = {.lex_state = 53}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 120}, - [1362] = {.lex_state = 120}, - [1363] = {.lex_state = 53}, - [1364] = {.lex_state = 120}, - [1365] = {.lex_state = 53}, - [1366] = {.lex_state = 53}, - [1367] = {.lex_state = 53}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 53}, - [1370] = {.lex_state = 53}, - [1371] = {.lex_state = 120}, - [1372] = {.lex_state = 120}, - [1373] = {.lex_state = 54}, - [1374] = {.lex_state = 53}, - [1375] = {.lex_state = 120}, - [1376] = {.lex_state = 120}, - [1377] = {.lex_state = 53}, - [1378] = {.lex_state = 53}, - [1379] = {.lex_state = 120}, - [1380] = {.lex_state = 120}, - [1381] = {.lex_state = 49}, - [1382] = {.lex_state = 53}, - [1383] = {.lex_state = 54}, - [1384] = {.lex_state = 120}, - [1385] = {.lex_state = 53}, - [1386] = {.lex_state = 53}, + [1289] = {.lex_state = 25}, + [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 = 52}, + [1309] = {.lex_state = 52}, + [1310] = {.lex_state = 52}, + [1311] = {.lex_state = 52}, + [1312] = {.lex_state = 50}, + [1313] = {.lex_state = 50}, + [1314] = {.lex_state = 52}, + [1315] = {.lex_state = 52}, + [1316] = {.lex_state = 52}, + [1317] = {.lex_state = 50}, + [1318] = {.lex_state = 50}, + [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 = 56}, + [1326] = {.lex_state = 52}, + [1327] = {.lex_state = 52}, + [1328] = {.lex_state = 52}, + [1329] = {.lex_state = 52}, + [1330] = {.lex_state = 52}, + [1331] = {.lex_state = 52}, + [1332] = {.lex_state = 52}, + [1333] = {.lex_state = 52}, + [1334] = {.lex_state = 52}, + [1335] = {.lex_state = 52}, + [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}, + [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 = 52}, + [1352] = {.lex_state = 52}, + [1353] = {.lex_state = 50}, + [1354] = {.lex_state = 49}, + [1355] = {.lex_state = 56}, + [1356] = {.lex_state = 52}, + [1357] = {.lex_state = 50}, + [1358] = {.lex_state = 50}, + [1359] = {.lex_state = 52}, + [1360] = {.lex_state = 50}, + [1361] = {.lex_state = 50}, + [1362] = {.lex_state = 50}, + [1363] = {.lex_state = 52}, + [1364] = {.lex_state = 52}, + [1365] = {.lex_state = 52}, + [1366] = {.lex_state = 52}, + [1367] = {.lex_state = 50}, + [1368] = {.lex_state = 50}, + [1369] = {.lex_state = 52}, + [1370] = {.lex_state = 50}, + [1371] = {.lex_state = 50}, + [1372] = {.lex_state = 52}, + [1373] = {.lex_state = 50}, + [1374] = {.lex_state = 50}, + [1375] = {.lex_state = 52}, + [1376] = {.lex_state = 52}, + [1377] = {.lex_state = 52}, + [1378] = {.lex_state = 50}, + [1379] = {.lex_state = 52}, + [1380] = {.lex_state = 52}, + [1381] = {.lex_state = 52}, + [1382] = {.lex_state = 50}, + [1383] = {.lex_state = 52}, + [1384] = {.lex_state = 52}, + [1385] = {.lex_state = 0}, + [1386] = {.lex_state = 120}, [1387] = {.lex_state = 120}, - [1388] = {.lex_state = 54}, - [1389] = {.lex_state = 49}, - [1390] = {.lex_state = 120}, - [1391] = {.lex_state = 53}, - [1392] = {.lex_state = 54}, - [1393] = {.lex_state = 53}, - [1394] = {.lex_state = 53}, - [1395] = {.lex_state = 49}, - [1396] = {.lex_state = 53}, - [1397] = {.lex_state = 53}, - [1398] = {.lex_state = 53}, - [1399] = {.lex_state = 120}, - [1400] = {.lex_state = 53}, + [1388] = {.lex_state = 52}, + [1389] = {.lex_state = 52}, + [1390] = {.lex_state = 52}, + [1391] = {.lex_state = 120}, + [1392] = {.lex_state = 52}, + [1393] = {.lex_state = 52}, + [1394] = {.lex_state = 52}, + [1395] = {.lex_state = 52}, + [1396] = {.lex_state = 120}, + [1397] = {.lex_state = 0}, + [1398] = {.lex_state = 120}, + [1399] = {.lex_state = 52}, + [1400] = {.lex_state = 120}, [1401] = {.lex_state = 120}, - [1402] = {.lex_state = 53}, + [1402] = {.lex_state = 49}, [1403] = {.lex_state = 120}, - [1404] = {.lex_state = 53}, - [1405] = {.lex_state = 120}, - [1406] = {.lex_state = 120}, - [1407] = {.lex_state = 53}, - [1408] = {.lex_state = 53}, - [1409] = {.lex_state = 50}, - [1410] = {.lex_state = 53}, - [1411] = {.lex_state = 53}, - [1412] = {.lex_state = 120}, - [1413] = {.lex_state = 120}, - [1414] = {.lex_state = 50}, - [1415] = {.lex_state = 53}, - [1416] = {.lex_state = 120}, - [1417] = {.lex_state = 53}, - [1418] = {.lex_state = 120}, - [1419] = {.lex_state = 120}, - [1420] = {.lex_state = 50}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 120}, - [1423] = {.lex_state = 53}, - [1424] = {.lex_state = 53}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 53}, + [1404] = {.lex_state = 120}, + [1405] = {.lex_state = 49}, + [1406] = {.lex_state = 54}, + [1407] = {.lex_state = 54}, + [1408] = {.lex_state = 52}, + [1409] = {.lex_state = 120}, + [1410] = {.lex_state = 52}, + [1411] = {.lex_state = 120}, + [1412] = {.lex_state = 52}, + [1413] = {.lex_state = 49}, + [1414] = {.lex_state = 52}, + [1415] = {.lex_state = 52}, + [1416] = {.lex_state = 52}, + [1417] = {.lex_state = 54}, + [1418] = {.lex_state = 54}, + [1419] = {.lex_state = 54}, + [1420] = {.lex_state = 52}, + [1421] = {.lex_state = 52}, + [1422] = {.lex_state = 54}, + [1423] = {.lex_state = 54}, + [1424] = {.lex_state = 120}, + [1425] = {.lex_state = 52}, + [1426] = {.lex_state = 52}, [1427] = {.lex_state = 120}, - [1428] = {.lex_state = 53}, - [1429] = {.lex_state = 53}, + [1428] = {.lex_state = 54}, + [1429] = {.lex_state = 52}, [1430] = {.lex_state = 120}, - [1431] = {.lex_state = 53}, - [1432] = {.lex_state = 53}, - [1433] = {.lex_state = 120}, - [1434] = {.lex_state = 53}, - [1435] = {.lex_state = 53}, - [1436] = {.lex_state = 53}, - [1437] = {.lex_state = 53}, - [1438] = {.lex_state = 53}, - [1439] = {.lex_state = 53}, - [1440] = {.lex_state = 53}, - [1441] = {.lex_state = 120}, - [1442] = {.lex_state = 120}, - [1443] = {.lex_state = 53}, - [1444] = {.lex_state = 53}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 120}, - [1447] = {.lex_state = 53}, - [1448] = {.lex_state = 53}, - [1449] = {.lex_state = 53}, - [1450] = {.lex_state = 53}, - [1451] = {.lex_state = 50}, - [1452] = {.lex_state = 53}, - [1453] = {.lex_state = 53}, - [1454] = {.lex_state = 53}, - [1455] = {.lex_state = 53}, - [1456] = {.lex_state = 53}, - [1457] = {.lex_state = 120}, - [1458] = {.lex_state = 53}, - [1459] = {.lex_state = 53}, - [1460] = {.lex_state = 120}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 53}, - [1463] = {.lex_state = 53}, - [1464] = {.lex_state = 53}, - [1465] = {.lex_state = 53}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 56}, - [1468] = {.lex_state = 56}, + [1431] = {.lex_state = 52}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 120}, + [1435] = {.lex_state = 52}, + [1436] = {.lex_state = 52}, + [1437] = {.lex_state = 120}, + [1438] = {.lex_state = 120}, + [1439] = {.lex_state = 120}, + [1440] = {.lex_state = 52}, + [1441] = {.lex_state = 52}, + [1442] = {.lex_state = 50}, + [1443] = {.lex_state = 120}, + [1444] = {.lex_state = 52}, + [1445] = {.lex_state = 120}, + [1446] = {.lex_state = 50}, + [1447] = {.lex_state = 52}, + [1448] = {.lex_state = 120}, + [1449] = {.lex_state = 52}, + [1450] = {.lex_state = 50}, + [1451] = {.lex_state = 120}, + [1452] = {.lex_state = 120}, + [1453] = {.lex_state = 120}, + [1454] = {.lex_state = 120}, + [1455] = {.lex_state = 52}, + [1456] = {.lex_state = 52}, + [1457] = {.lex_state = 52}, + [1458] = {.lex_state = 52}, + [1459] = {.lex_state = 52}, + [1460] = {.lex_state = 52}, + [1461] = {.lex_state = 120}, + [1462] = {.lex_state = 120}, + [1463] = {.lex_state = 52}, + [1464] = {.lex_state = 52}, + [1465] = {.lex_state = 52}, + [1466] = {.lex_state = 52}, + [1467] = {.lex_state = 120}, + [1468] = {.lex_state = 52}, [1469] = {.lex_state = 120}, - [1470] = {.lex_state = 120}, - [1471] = {.lex_state = 56}, - [1472] = {.lex_state = 56}, - [1473] = {.lex_state = 56}, - [1474] = {.lex_state = 120}, - [1475] = {.lex_state = 56}, - [1476] = {.lex_state = 50}, - [1477] = {.lex_state = 53}, - [1478] = {.lex_state = 53}, - [1479] = {.lex_state = 56}, - [1480] = {.lex_state = 56}, - [1481] = {.lex_state = 53}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 120}, - [1484] = {.lex_state = 53}, - [1485] = {.lex_state = 56}, - [1486] = {.lex_state = 56}, - [1487] = {.lex_state = 120}, - [1488] = {.lex_state = 56}, - [1489] = {.lex_state = 53}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 53}, - [1492] = {.lex_state = 53}, - [1493] = {.lex_state = 53}, - [1494] = {.lex_state = 50}, - [1495] = {.lex_state = 53}, - [1496] = {.lex_state = 53}, - [1497] = {.lex_state = 53}, - [1498] = {.lex_state = 53}, - [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 = 45}, - [1513] = {.lex_state = 53}, - [1514] = {.lex_state = 53}, - [1515] = {.lex_state = 53}, - [1516] = {.lex_state = 53}, - [1517] = {.lex_state = 53}, - [1518] = {.lex_state = 53}, - [1519] = {.lex_state = 30}, - [1520] = {.lex_state = 32}, - [1521] = {.lex_state = 53}, - [1522] = {.lex_state = 30}, - [1523] = {.lex_state = 50}, - [1524] = {.lex_state = 33}, - [1525] = {.lex_state = 33}, - [1526] = {.lex_state = 50}, - [1527] = {.lex_state = 120}, - [1528] = {.lex_state = 33}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 30}, - [1531] = {.lex_state = 32}, - [1532] = {.lex_state = 32}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 33}, - [1535] = {.lex_state = 53}, - [1536] = {.lex_state = 53}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 32}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 53}, - [1543] = {.lex_state = 53}, - [1544] = {.lex_state = 33}, - [1545] = {.lex_state = 45}, - [1546] = {.lex_state = 50}, - [1547] = {.lex_state = 32}, - [1548] = {.lex_state = 53}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 53}, - [1551] = {.lex_state = 120}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 32}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 53}, + [1470] = {.lex_state = 52}, + [1471] = {.lex_state = 52}, + [1472] = {.lex_state = 52}, + [1473] = {.lex_state = 52}, + [1474] = {.lex_state = 52}, + [1475] = {.lex_state = 52}, + [1476] = {.lex_state = 52}, + [1477] = {.lex_state = 52}, + [1478] = {.lex_state = 52}, + [1479] = {.lex_state = 120}, + [1480] = {.lex_state = 52}, + [1481] = {.lex_state = 52}, + [1482] = {.lex_state = 120}, + [1483] = {.lex_state = 52}, + [1484] = {.lex_state = 52}, + [1485] = {.lex_state = 50}, + [1486] = {.lex_state = 52}, + [1487] = {.lex_state = 52}, + [1488] = {.lex_state = 0}, + [1489] = {.lex_state = 52}, + [1490] = {.lex_state = 52}, + [1491] = {.lex_state = 52}, + [1492] = {.lex_state = 52}, + [1493] = {.lex_state = 52}, + [1494] = {.lex_state = 120}, + [1495] = {.lex_state = 52}, + [1496] = {.lex_state = 52}, + [1497] = {.lex_state = 0}, + [1498] = {.lex_state = 52}, + [1499] = {.lex_state = 52}, + [1500] = {.lex_state = 0}, + [1501] = {.lex_state = 56}, + [1502] = {.lex_state = 56}, + [1503] = {.lex_state = 52}, + [1504] = {.lex_state = 52}, + [1505] = {.lex_state = 50}, + [1506] = {.lex_state = 56}, + [1507] = {.lex_state = 56}, + [1508] = {.lex_state = 120}, + [1509] = {.lex_state = 56}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 56}, + [1512] = {.lex_state = 56}, + [1513] = {.lex_state = 56}, + [1514] = {.lex_state = 52}, + [1515] = {.lex_state = 52}, + [1516] = {.lex_state = 120}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 56}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 56}, + [1521] = {.lex_state = 120}, + [1522] = {.lex_state = 120}, + [1523] = {.lex_state = 56}, + [1524] = {.lex_state = 120}, + [1525] = {.lex_state = 45}, + [1526] = {.lex_state = 52}, + [1527] = {.lex_state = 52}, + [1528] = {.lex_state = 52}, + [1529] = {.lex_state = 52}, + [1530] = {.lex_state = 52}, + [1531] = {.lex_state = 52}, + [1532] = {.lex_state = 52}, + [1533] = {.lex_state = 52}, + [1534] = {.lex_state = 52}, + [1535] = {.lex_state = 52}, + [1536] = {.lex_state = 52}, + [1537] = {.lex_state = 52}, + [1538] = {.lex_state = 52}, + [1539] = {.lex_state = 52}, + [1540] = {.lex_state = 52}, + [1541] = {.lex_state = 52}, + [1542] = {.lex_state = 52}, + [1543] = {.lex_state = 52}, + [1544] = {.lex_state = 52}, + [1545] = {.lex_state = 50}, + [1546] = {.lex_state = 52}, + [1547] = {.lex_state = 52}, + [1548] = {.lex_state = 52}, + [1549] = {.lex_state = 52}, + [1550] = {.lex_state = 52}, + [1551] = {.lex_state = 52}, + [1552] = {.lex_state = 52}, + [1553] = {.lex_state = 52}, + [1554] = {.lex_state = 30}, + [1555] = {.lex_state = 52}, + [1556] = {.lex_state = 52}, [1557] = {.lex_state = 32}, - [1558] = {.lex_state = 33}, - [1559] = {.lex_state = 33}, - [1560] = {.lex_state = 50}, - [1561] = {.lex_state = 53}, - [1562] = {.lex_state = 30}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 53}, - [1565] = {.lex_state = 0}, + [1558] = {.lex_state = 52}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 52}, + [1561] = {.lex_state = 33}, + [1562] = {.lex_state = 33}, + [1563] = {.lex_state = 32}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 30}, [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 35}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 45}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 0}, - [1574] = {.lex_state = 45}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 32}, + [1569] = {.lex_state = 30}, + [1570] = {.lex_state = 33}, + [1571] = {.lex_state = 52}, + [1572] = {.lex_state = 120}, + [1573] = {.lex_state = 52}, + [1574] = {.lex_state = 33}, + [1575] = {.lex_state = 45}, + [1576] = {.lex_state = 120}, [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 45}, - [1580] = {.lex_state = 45}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 45}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, + [1578] = {.lex_state = 52}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 33}, + [1581] = {.lex_state = 50}, + [1582] = {.lex_state = 30}, + [1583] = {.lex_state = 32}, + [1584] = {.lex_state = 50}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 30}, + [1587] = {.lex_state = 33}, [1588] = {.lex_state = 0}, [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 0}, + [1590] = {.lex_state = 30}, + [1591] = {.lex_state = 50}, + [1592] = {.lex_state = 33}, + [1593] = {.lex_state = 30}, + [1594] = {.lex_state = 50}, + [1595] = {.lex_state = 52}, [1596] = {.lex_state = 0}, [1597] = {.lex_state = 0}, [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 35}, + [1599] = {.lex_state = 0}, [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 35}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 45}, + [1601] = {.lex_state = 45}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 52}, + [1604] = {.lex_state = 0}, [1605] = {.lex_state = 0}, [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 45}, + [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, [1610] = {.lex_state = 0}, [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, + [1612] = {.lex_state = 35}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, [1617] = {.lex_state = 0}, - [1618] = {.lex_state = 30}, + [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}, + [1625] = {.lex_state = 35}, + [1626] = {.lex_state = 32}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, @@ -11299,384 +11850,444 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1634] = {.lex_state = 0}, [1635] = {.lex_state = 0}, [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, + [1637] = {.lex_state = 52}, + [1638] = {.lex_state = 35}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 30}, + [1641] = {.lex_state = 52}, [1642] = {.lex_state = 0}, [1643] = {.lex_state = 0}, - [1644] = {.lex_state = 53}, + [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, - [1646] = {.lex_state = 53}, + [1646] = {.lex_state = 0}, [1647] = {.lex_state = 0}, [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 53}, + [1649] = {.lex_state = 0}, [1650] = {.lex_state = 0}, [1651] = {.lex_state = 0}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 53}, + [1653] = {.lex_state = 52}, [1654] = {.lex_state = 0}, [1655] = {.lex_state = 0}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 30}, + [1659] = {.lex_state = 0}, [1660] = {.lex_state = 0}, [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 0}, + [1662] = {.lex_state = 45}, + [1663] = {.lex_state = 45}, [1664] = {.lex_state = 0}, [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 53}, + [1666] = {.lex_state = 35}, [1667] = {.lex_state = 0}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 53}, - [1671] = {.lex_state = 0}, + [1670] = {.lex_state = 0}, + [1671] = {.lex_state = 45}, [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 53}, - [1675] = {.lex_state = 35}, - [1676] = {.lex_state = 0}, + [1673] = {.lex_state = 32}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 0}, + [1676] = {.lex_state = 52}, [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 34}, - [1680] = {.lex_state = 34}, - [1681] = {.lex_state = 120}, - [1682] = {.lex_state = 34}, - [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 34}, - [1685] = {.lex_state = 34}, - [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 34}, - [1688] = {.lex_state = 0}, - [1689] = {.lex_state = 120}, + [1678] = {.lex_state = 45}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 35}, + [1682] = {.lex_state = 0}, + [1683] = {.lex_state = 35}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 35}, + [1686] = {.lex_state = 52}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 35}, + [1689] = {.lex_state = 0}, [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 120}, - [1692] = {.lex_state = 34}, - [1693] = {.lex_state = 120}, - [1694] = {.lex_state = 45}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 45}, + [1694] = {.lex_state = 0}, [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 34}, - [1697] = {.lex_state = 120}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 52}, [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 45}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 53}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 52}, + [1701] = {.lex_state = 45}, + [1702] = {.lex_state = 0}, [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 34}, - [1705] = {.lex_state = 34}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 0}, [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 53}, - [1708] = {.lex_state = 0}, + [1707] = {.lex_state = 52}, + [1708] = {.lex_state = 52}, [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 34}, - [1711] = {.lex_state = 120}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 0}, [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 120}, - [1714] = {.lex_state = 120}, - [1715] = {.lex_state = 34}, - [1716] = {.lex_state = 53}, - [1717] = {.lex_state = 34}, + [1713] = {.lex_state = 0}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 32}, [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 53}, - [1720] = {.lex_state = 120}, - [1721] = {.lex_state = 120}, - [1722] = {.lex_state = 53}, - [1723] = {.lex_state = 34}, + [1719] = {.lex_state = 0}, + [1720] = {.lex_state = 0}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 120}, + [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 34}, - [1727] = {.lex_state = 34}, - [1728] = {.lex_state = 0}, - [1729] = {.lex_state = 120}, - [1730] = {.lex_state = 0}, - [1731] = {.lex_state = 120}, - [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 120}, + [1725] = {.lex_state = 120}, + [1726] = {.lex_state = 0}, + [1727] = {.lex_state = 0}, + [1728] = {.lex_state = 136}, + [1729] = {.lex_state = 34}, + [1730] = {.lex_state = 52}, + [1731] = {.lex_state = 34}, + [1732] = {.lex_state = 52}, + [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 45}, - [1736] = {.lex_state = 0}, + [1735] = {.lex_state = 120}, + [1736] = {.lex_state = 34}, [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 53}, - [1739] = {.lex_state = 120}, - [1740] = {.lex_state = 120}, - [1741] = {.lex_state = 120}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 53}, + [1738] = {.lex_state = 136}, + [1739] = {.lex_state = 0}, + [1740] = {.lex_state = 136}, + [1741] = {.lex_state = 0}, + [1742] = {.lex_state = 34}, + [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, - [1745] = {.lex_state = 120}, - [1746] = {.lex_state = 120}, - [1747] = {.lex_state = 0}, + [1745] = {.lex_state = 34}, + [1746] = {.lex_state = 34}, + [1747] = {.lex_state = 34}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 120}, - [1750] = {.lex_state = 34}, + [1749] = {.lex_state = 0}, + [1750] = {.lex_state = 0}, [1751] = {.lex_state = 0}, - [1752] = {.lex_state = 120}, - [1753] = {.lex_state = 120}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 120}, + [1752] = {.lex_state = 0}, + [1753] = {.lex_state = 34}, + [1754] = {.lex_state = 136}, + [1755] = {.lex_state = 34}, [1756] = {.lex_state = 120}, - [1757] = {.lex_state = 120}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 53}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 0}, + [1757] = {.lex_state = 34}, + [1758] = {.lex_state = 120}, + [1759] = {.lex_state = 120}, + [1760] = {.lex_state = 120}, + [1761] = {.lex_state = 34}, + [1762] = {.lex_state = 34}, + [1763] = {.lex_state = 0}, + [1764] = {.lex_state = 52}, + [1765] = {.lex_state = 120}, [1766] = {.lex_state = 120}, - [1767] = {.lex_state = 44}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 35}, - [1770] = {.lex_state = 0}, - [1771] = {.lex_state = 0}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 120}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 120}, + [1771] = {.lex_state = 52}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 35}, - [1774] = {.lex_state = 35}, - [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 35}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 35}, - [1781] = {.lex_state = 0}, + [1773] = {.lex_state = 45}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 120}, + [1776] = {.lex_state = 34}, + [1777] = {.lex_state = 34}, + [1778] = {.lex_state = 120}, + [1779] = {.lex_state = 120}, + [1780] = {.lex_state = 45}, + [1781] = {.lex_state = 120}, [1782] = {.lex_state = 0}, - [1783] = {.lex_state = 35}, - [1784] = {.lex_state = 35}, - [1785] = {.lex_state = 35}, - [1786] = {.lex_state = 120}, - [1787] = {.lex_state = 44}, - [1788] = {.lex_state = 44}, - [1789] = {.lex_state = 35}, - [1790] = {.lex_state = 53}, - [1791] = {.lex_state = 44}, - [1792] = {.lex_state = 35}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 53}, - [1795] = {.lex_state = 35}, - [1796] = {.lex_state = 35}, - [1797] = {.lex_state = 53}, - [1798] = {.lex_state = 35}, - [1799] = {.lex_state = 44}, + [1783] = {.lex_state = 34}, + [1784] = {.lex_state = 52}, + [1785] = {.lex_state = 52}, + [1786] = {.lex_state = 34}, + [1787] = {.lex_state = 52}, + [1788] = {.lex_state = 120}, + [1789] = {.lex_state = 120}, + [1790] = {.lex_state = 120}, + [1791] = {.lex_state = 52}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 120}, + [1794] = {.lex_state = 120}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 45}, + [1797] = {.lex_state = 34}, + [1798] = {.lex_state = 120}, + [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, - [1803] = {.lex_state = 44}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 35}, - [1806] = {.lex_state = 35}, + [1802] = {.lex_state = 120}, + [1803] = {.lex_state = 120}, + [1804] = {.lex_state = 120}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, - [1808] = {.lex_state = 35}, + [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 53}, - [1811] = {.lex_state = 53}, - [1812] = {.lex_state = 0}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 120}, [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 53}, - [1816] = {.lex_state = 35}, - [1817] = {.lex_state = 0}, + [1815] = {.lex_state = 44}, + [1816] = {.lex_state = 0}, + [1817] = {.lex_state = 44}, [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 53}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 44}, - [1822] = {.lex_state = 44}, + [1819] = {.lex_state = 35}, + [1820] = {.lex_state = 52}, + [1821] = {.lex_state = 35}, + [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, + [1824] = {.lex_state = 120}, [1825] = {.lex_state = 0}, [1826] = {.lex_state = 35}, - [1827] = {.lex_state = 53}, + [1827] = {.lex_state = 44}, [1828] = {.lex_state = 44}, [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 44}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 53}, + [1830] = {.lex_state = 35}, + [1831] = {.lex_state = 44}, + [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 35}, - [1836] = {.lex_state = 44}, - [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 44}, - [1839] = {.lex_state = 53}, - [1840] = {.lex_state = 44}, - [1841] = {.lex_state = 53}, - [1842] = {.lex_state = 44}, + [1834] = {.lex_state = 44}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 35}, + [1838] = {.lex_state = 0}, + [1839] = {.lex_state = 0}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 52}, + [1842] = {.lex_state = 35}, [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 44}, - [1845] = {.lex_state = 53}, - [1846] = {.lex_state = 120}, - [1847] = {.lex_state = 35}, - [1848] = {.lex_state = 120}, - [1849] = {.lex_state = 0}, + [1844] = {.lex_state = 0}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 35}, + [1847] = {.lex_state = 52}, + [1848] = {.lex_state = 44}, + [1849] = {.lex_state = 35}, [1850] = {.lex_state = 44}, [1851] = {.lex_state = 0}, - [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 44}, - [1854] = {.lex_state = 53}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, + [1852] = {.lex_state = 44}, + [1853] = {.lex_state = 35}, + [1854] = {.lex_state = 0}, + [1855] = {.lex_state = 35}, + [1856] = {.lex_state = 120}, + [1857] = {.lex_state = 120}, [1858] = {.lex_state = 0}, - [1859] = {.lex_state = 53}, - [1860] = {.lex_state = 44}, - [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 44}, - [1864] = {.lex_state = 53}, - [1865] = {.lex_state = 0}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 44}, + [1859] = {.lex_state = 0}, + [1860] = {.lex_state = 52}, + [1861] = {.lex_state = 35}, + [1862] = {.lex_state = 35}, + [1863] = {.lex_state = 35}, + [1864] = {.lex_state = 35}, + [1865] = {.lex_state = 35}, + [1866] = {.lex_state = 35}, + [1867] = {.lex_state = 52}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, + [1869] = {.lex_state = 52}, + [1870] = {.lex_state = 44}, + [1871] = {.lex_state = 44}, [1872] = {.lex_state = 44}, - [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, + [1873] = {.lex_state = 52}, + [1874] = {.lex_state = 35}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 53}, - [1877] = {.lex_state = 35}, + [1876] = {.lex_state = 120}, + [1877] = {.lex_state = 52}, [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 53}, - [1880] = {.lex_state = 44}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 120}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 35}, + [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, - [1884] = {.lex_state = 35}, - [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 53}, + [1884] = {.lex_state = 120}, + [1885] = {.lex_state = 44}, + [1886] = {.lex_state = 0}, [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 53}, - [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 53}, - [1891] = {.lex_state = 44}, - [1892] = {.lex_state = 44}, - [1893] = {.lex_state = 53}, - [1894] = {.lex_state = 44}, - [1895] = {.lex_state = 44}, + [1888] = {.lex_state = 35}, + [1889] = {.lex_state = 35}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 0}, + [1892] = {.lex_state = 52}, + [1893] = {.lex_state = 0}, + [1894] = {.lex_state = 35}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 120}, - [1899] = {.lex_state = 120}, + [1898] = {.lex_state = 0}, + [1899] = {.lex_state = 52}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 53}, - [1903] = {.lex_state = 53}, + [1902] = {.lex_state = 120}, + [1903] = {.lex_state = 35}, [1904] = {.lex_state = 0}, - [1905] = {.lex_state = 44}, + [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 35}, + [1907] = {.lex_state = 0}, [1908] = {.lex_state = 44}, - [1909] = {.lex_state = 44}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 53}, - [1912] = {.lex_state = 120}, - [1913] = {.lex_state = 44}, - [1914] = {.lex_state = 35}, - [1915] = {.lex_state = 44}, - [1916] = {.lex_state = 44}, - [1917] = {.lex_state = 44}, - [1918] = {.lex_state = 44}, + [1909] = {.lex_state = 0}, + [1910] = {.lex_state = 44}, + [1911] = {.lex_state = 0}, + [1912] = {.lex_state = 52}, + [1913] = {.lex_state = 0}, + [1914] = {.lex_state = 52}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 0}, + [1917] = {.lex_state = 52}, + [1918] = {.lex_state = 0}, [1919] = {.lex_state = 0}, [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 44}, + [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 35}, - [1924] = {.lex_state = 53}, - [1925] = {.lex_state = 44}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 35}, + [1925] = {.lex_state = 35}, [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 44}, - [1928] = {.lex_state = 53}, + [1927] = {.lex_state = 52}, + [1928] = {.lex_state = 0}, [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, + [1930] = {.lex_state = 52}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 44}, - [1933] = {.lex_state = 44}, - [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 53}, - [1936] = {.lex_state = 53}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 120}, + [1935] = {.lex_state = 44}, + [1936] = {.lex_state = 44}, [1937] = {.lex_state = 0}, - [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 35}, + [1938] = {.lex_state = 52}, + [1939] = {.lex_state = 0}, [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 53}, - [1942] = {.lex_state = 0}, - [1943] = {.lex_state = 0}, + [1941] = {.lex_state = 44}, + [1942] = {.lex_state = 44}, + [1943] = {.lex_state = 35}, [1944] = {.lex_state = 0}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 120}, - [1947] = {.lex_state = 35}, + [1945] = {.lex_state = 44}, + [1946] = {.lex_state = 35}, + [1947] = {.lex_state = 0}, [1948] = {.lex_state = 44}, - [1949] = {.lex_state = 44}, + [1949] = {.lex_state = 35}, [1950] = {.lex_state = 44}, [1951] = {.lex_state = 0}, - [1952] = {.lex_state = 53}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 0}, + [1952] = {.lex_state = 35}, + [1953] = {.lex_state = 35}, + [1954] = {.lex_state = 44}, [1955] = {.lex_state = 0}, - [1956] = {.lex_state = 0}, + [1956] = {.lex_state = 52}, [1957] = {.lex_state = 0}, - [1958] = {.lex_state = 53}, + [1958] = {.lex_state = 52}, [1959] = {.lex_state = 0}, - [1960] = {.lex_state = 53}, - [1961] = {.lex_state = 35}, - [1962] = {.lex_state = 53}, - [1963] = {.lex_state = 53}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 53}, + [1960] = {.lex_state = 52}, + [1961] = {.lex_state = 44}, + [1962] = {.lex_state = 52}, + [1963] = {.lex_state = 52}, + [1964] = {.lex_state = 44}, + [1965] = {.lex_state = 44}, [1966] = {.lex_state = 44}, - [1967] = {.lex_state = 0}, + [1967] = {.lex_state = 44}, [1968] = {.lex_state = 44}, [1969] = {.lex_state = 120}, - [1970] = {.lex_state = 120}, + [1970] = {.lex_state = 52}, [1971] = {.lex_state = 0}, - [1972] = {.lex_state = 120}, - [1973] = {.lex_state = 0}, - [1974] = {.lex_state = 53}, + [1972] = {.lex_state = 0}, + [1973] = {.lex_state = 120}, + [1974] = {.lex_state = 52}, [1975] = {.lex_state = 0}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 0}, - [1978] = {.lex_state = 44}, - [1979] = {.lex_state = 44}, - [1980] = {.lex_state = 53}, - [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 44}, - [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 53}, + [1976] = {.lex_state = 35}, + [1977] = {.lex_state = 35}, + [1978] = {.lex_state = 0}, + [1979] = {.lex_state = 0}, + [1980] = {.lex_state = 35}, + [1981] = {.lex_state = 44}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 52}, + [1984] = {.lex_state = 35}, + [1985] = {.lex_state = 0}, [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 0}, - [1988] = {.lex_state = 0}, + [1987] = {.lex_state = 44}, + [1988] = {.lex_state = 44}, [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 0}, + [1990] = {.lex_state = 44}, [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 120}, + [1992] = {.lex_state = 44}, [1993] = {.lex_state = 44}, - [1994] = {.lex_state = 53}, - [1995] = {.lex_state = 53}, - [1996] = {.lex_state = 0}, + [1994] = {.lex_state = 52}, + [1995] = {.lex_state = 0}, + [1996] = {.lex_state = 52}, [1997] = {.lex_state = 35}, [1998] = {.lex_state = 0}, - [1999] = {.lex_state = 0}, + [1999] = {.lex_state = 44}, [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 35}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 53}, + [2001] = {.lex_state = 52}, + [2002] = {.lex_state = 44}, + [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, [2005] = {.lex_state = 35}, - [2006] = {.lex_state = 44}, - [2007] = {.lex_state = 44}, - [2008] = {.lex_state = 120}, + [2006] = {.lex_state = 0}, + [2007] = {.lex_state = 120}, + [2008] = {.lex_state = 0}, [2009] = {.lex_state = 44}, [2010] = {.lex_state = 44}, - [2011] = {.lex_state = 120}, - [2012] = {.lex_state = 120}, - [2013] = {.lex_state = 120}, + [2011] = {.lex_state = 44}, + [2012] = {.lex_state = 44}, + [2013] = {.lex_state = 0}, [2014] = {.lex_state = 0}, + [2015] = {.lex_state = 0}, + [2016] = {.lex_state = 0}, + [2017] = {.lex_state = 35}, + [2018] = {.lex_state = 52}, + [2019] = {.lex_state = 44}, + [2020] = {.lex_state = 52}, + [2021] = {.lex_state = 44}, + [2022] = {.lex_state = 52}, + [2023] = {.lex_state = 52}, + [2024] = {.lex_state = 35}, + [2025] = {.lex_state = 52}, + [2026] = {.lex_state = 44}, + [2027] = {.lex_state = 44}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 120}, + [2030] = {.lex_state = 120}, + [2031] = {.lex_state = 120}, + [2032] = {.lex_state = 44}, + [2033] = {.lex_state = 0}, + [2034] = {.lex_state = 44}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 120}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 120}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 52}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 44}, + [2043] = {.lex_state = 44}, + [2044] = {.lex_state = 0}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 120}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 35}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 120}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 52}, + [2055] = {.lex_state = 52}, + [2056] = {.lex_state = 52}, + [2057] = {.lex_state = 0}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 0}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 44}, + [2063] = {.lex_state = 52}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 0}, + [2066] = {.lex_state = 44}, + [2067] = {.lex_state = 35}, + [2068] = {.lex_state = 120}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 0}, + [2071] = {.lex_state = 120}, + [2072] = {.lex_state = 52}, + [2073] = {.lex_state = 52}, + [2074] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -11689,6 +12300,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1), + [aux_sym_preproc_embed_token1] = ACTIONS(1), [aux_sym_preproc_if_token1] = ACTIONS(1), [aux_sym_preproc_if_token2] = ACTIONS(1), [aux_sym_preproc_ifdef_token1] = ACTIONS(1), @@ -11769,7 +12383,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1), [anon_sym_alignas] = ACTIONS(1), [anon_sym__Alignas] = ACTIONS(1), - [sym_primitive_type] = ACTIONS(1), + [aux_sym_primitive_type_token1] = ACTIONS(1), + [anon_sym__BitInt] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_struct] = ACTIONS(1), @@ -11810,6 +12425,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1), [anon_sym__Alignof] = ACTIONS(1), [anon_sym_offsetof] = ACTIONS(1), + [anon_sym_static_assert] = ACTIONS(1), + [anon_sym__Static_assert] = ACTIONS(1), + [anon_sym_typeof] = ACTIONS(1), + [anon_sym_typeof_unqual] = ACTIONS(1), [anon_sym__Generic] = ACTIONS(1), [anon_sym_asm] = ACTIONS(1), [anon_sym___asm__] = ACTIONS(1), @@ -11835,724 +12454,780 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [STATE(1)] = { - [sym_translation_unit] = STATE(1820), - [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(320), - [sym_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1128), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(796), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(356), - [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(1101), - [sym__string] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(928), - [sym_unary_expression] = STATE(1103), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_alignof_expression] = STATE(1103), - [sym_offsetof_expression] = STATE(1103), - [sym_generic_expression] = STATE(1103), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_gnu_asm_expression] = STATE(1103), - [sym_extension_expression] = STATE(1103), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(928), - [sym_char_literal] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(1103), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_translation_unit] = STATE(2006), + [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_errwarn] = STATE(43), + [sym_preproc_embed] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym__old_style_function_definition] = STATE(341), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1168), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(679), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(821), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(343), + [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(1134), + [sym__string] = STATE(1133), + [sym_conditional_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1133), + [sym_pointer_expression] = STATE(958), + [sym_unary_expression] = STATE(1133), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(1133), + [sym_cast_expression] = STATE(1133), + [sym_sizeof_expression] = STATE(1133), + [sym_alignof_expression] = STATE(1133), + [sym_offsetof_expression] = STATE(1133), + [sym_static_assert_expression] = STATE(1133), + [sym_typeof_expression] = STATE(1133), + [sym_generic_expression] = STATE(1133), + [sym_subscript_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_gnu_asm_expression] = STATE(1133), + [sym_extension_expression] = STATE(1133), + [sym_field_expression] = STATE(958), + [sym_compound_literal_expression] = STATE(1133), + [sym_parenthesized_expression] = STATE(958), + [sym_char_literal] = STATE(1133), + [sym_concatenated_string] = STATE(1133), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(1133), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [ts_builtin_sym_end] = ACTIONS(5), [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), - [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___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_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(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___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(95), - [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(101), - [sym_false] = ACTIONS(101), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [aux_sym_preproc_errwarn_token1] = ACTIONS(13), + [aux_sym_preproc_errwarn_token2] = ACTIONS(13), + [aux_sym_preproc_embed_token1] = ACTIONS(15), + [aux_sym_preproc_if_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token1] = ACTIONS(19), + [aux_sym_preproc_ifdef_token2] = ACTIONS(19), + [sym_preproc_directive] = ACTIONS(21), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(37), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(113), + [sym_false] = ACTIONS(113), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(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(1993), - [sym_preproc_elif] = STATE(1993), - [sym_preproc_elifdef] = STATE(1993), - [sym_function_definition] = STATE(3), - [sym__old_style_function_definition] = STATE(131), - [sym_declaration] = STATE(3), - [sym_type_definition] = STATE(3), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(3), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [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_errwarn] = STATE(4), + [sym_preproc_embed] = STATE(4), + [sym_preproc_if] = STATE(4), + [sym_preproc_ifdef] = STATE(4), + [sym_preproc_else] = STATE(1964), + [sym_preproc_elif] = STATE(1964), + [sym_preproc_elifdef] = STATE(1964), + [sym_function_definition] = STATE(4), + [sym__old_style_function_definition] = STATE(120), + [sym_declaration] = STATE(4), + [sym_type_definition] = STATE(4), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), + [sym_linkage_specification] = STATE(4), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), - [sym_statement] = STATE(3), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), + [sym_statement] = STATE(4), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(3), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(3), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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(113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(4), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(4), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(129), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(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(1950), - [sym_preproc_elif] = STATE(1950), - [sym_preproc_elifdef] = STATE(1950), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), - [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), - }, - [STATE(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_errwarn] = STATE(5), + [sym_preproc_embed] = STATE(5), [sym_preproc_if] = STATE(5), [sym_preproc_ifdef] = STATE(5), [sym_preproc_else] = STATE(1932), [sym_preproc_elif] = STATE(1932), [sym_preproc_elifdef] = STATE(1932), [sym_function_definition] = STATE(5), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(5), [sym_type_definition] = STATE(5), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(5), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(5), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(5), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(5), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [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_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(2002), + [sym_preproc_elif] = STATE(2002), + [sym_preproc_elifdef] = STATE(2002), + [sym_function_definition] = STATE(22), + [sym__old_style_function_definition] = STATE(120), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(686), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(22), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(5)] = { @@ -12561,181 +13236,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1978), - [sym_preproc_elif] = STATE(1978), - [sym_preproc_elifdef] = STATE(1978), + [sym_preproc_else] = STATE(1966), + [sym_preproc_elif] = STATE(1966), + [sym_preproc_elifdef] = STATE(1966), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(185), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(6)] = { @@ -12744,181 +13433,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(8), [sym_preproc_function_def] = STATE(8), [sym_preproc_call] = STATE(8), + [sym_preproc_errwarn] = STATE(8), + [sym_preproc_embed] = STATE(8), [sym_preproc_if] = STATE(8), [sym_preproc_ifdef] = STATE(8), - [sym_preproc_else] = STATE(2009), - [sym_preproc_elif] = STATE(2009), - [sym_preproc_elifdef] = STATE(2009), + [sym_preproc_else] = STATE(1999), + [sym_preproc_elif] = STATE(1999), + [sym_preproc_elifdef] = STATE(1999), [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(8), [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(8), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(187), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(7)] = { @@ -12927,181 +13630,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(9), [sym_preproc_function_def] = STATE(9), [sym_preproc_call] = STATE(9), + [sym_preproc_errwarn] = STATE(9), + [sym_preproc_embed] = STATE(9), [sym_preproc_if] = STATE(9), [sym_preproc_ifdef] = STATE(9), - [sym_preproc_else] = STATE(1791), - [sym_preproc_elif] = STATE(1791), - [sym_preproc_elifdef] = STATE(1791), + [sym_preproc_else] = STATE(1988), + [sym_preproc_elif] = STATE(1988), + [sym_preproc_elifdef] = STATE(1988), [sym_function_definition] = STATE(9), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(9), [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(9), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(189), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(8)] = { @@ -13110,181 +13827,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(2006), - [sym_preproc_elif] = STATE(2006), - [sym_preproc_elifdef] = STATE(2006), + [sym_preproc_else] = STATE(1828), + [sym_preproc_elif] = STATE(1828), + [sym_preproc_elifdef] = STATE(1828), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(191), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(9)] = { @@ -13293,181 +14024,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1979), - [sym_preproc_elif] = STATE(1979), - [sym_preproc_elifdef] = STATE(1979), + [sym_preproc_else] = STATE(1967), + [sym_preproc_elif] = STATE(1967), + [sym_preproc_elifdef] = STATE(1967), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(193), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(10)] = { @@ -13476,181 +14221,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(12), [sym_preproc_function_def] = STATE(12), [sym_preproc_call] = STATE(12), + [sym_preproc_errwarn] = STATE(12), + [sym_preproc_embed] = STATE(12), [sym_preproc_if] = STATE(12), [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(1803), - [sym_preproc_elif] = STATE(1803), - [sym_preproc_elifdef] = STATE(1803), + [sym_preproc_else] = STATE(1834), + [sym_preproc_elif] = STATE(1834), + [sym_preproc_elifdef] = STATE(1834), [sym_function_definition] = STATE(12), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(12), [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(12), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(12), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(195), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(11)] = { @@ -13659,181 +14418,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(13), [sym_preproc_function_def] = STATE(13), [sym_preproc_call] = STATE(13), + [sym_preproc_errwarn] = STATE(13), + [sym_preproc_embed] = STATE(13), [sym_preproc_if] = STATE(13), [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1840), - [sym_preproc_elif] = STATE(1840), - [sym_preproc_elifdef] = STATE(1840), + [sym_preproc_else] = STATE(1987), + [sym_preproc_elif] = STATE(1987), + [sym_preproc_elifdef] = STATE(1987), [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(13), [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(13), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(197), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(12)] = { @@ -13842,181 +14615,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1842), - [sym_preproc_elif] = STATE(1842), - [sym_preproc_elifdef] = STATE(1842), + [sym_preproc_else] = STATE(1990), + [sym_preproc_elif] = STATE(1990), + [sym_preproc_elifdef] = STATE(1990), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(13)] = { @@ -14025,181 +14812,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1880), - [sym_preproc_elif] = STATE(1880), - [sym_preproc_elifdef] = STATE(1880), + [sym_preproc_else] = STATE(1942), + [sym_preproc_elif] = STATE(1942), + [sym_preproc_elifdef] = STATE(1942), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(201), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(14)] = { @@ -14208,181 +15009,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(16), [sym_preproc_function_def] = STATE(16), [sym_preproc_call] = STATE(16), + [sym_preproc_errwarn] = STATE(16), + [sym_preproc_embed] = STATE(16), [sym_preproc_if] = STATE(16), [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(1917), - [sym_preproc_elif] = STATE(1917), - [sym_preproc_elifdef] = STATE(1917), + [sym_preproc_else] = STATE(1950), + [sym_preproc_elif] = STATE(1950), + [sym_preproc_elifdef] = STATE(1950), [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(203), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(15)] = { @@ -14391,181 +15206,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(17), [sym_preproc_function_def] = STATE(17), [sym_preproc_call] = STATE(17), + [sym_preproc_errwarn] = STATE(17), + [sym_preproc_embed] = STATE(17), [sym_preproc_if] = STATE(17), [sym_preproc_ifdef] = STATE(17), - [sym_preproc_else] = STATE(1844), - [sym_preproc_elif] = STATE(1844), - [sym_preproc_elifdef] = STATE(1844), + [sym_preproc_else] = STATE(2019), + [sym_preproc_elif] = STATE(2019), + [sym_preproc_elifdef] = STATE(2019), [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(16)] = { @@ -14574,181 +15403,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1850), - [sym_preproc_elif] = STATE(1850), - [sym_preproc_elifdef] = STATE(1850), + [sym_preproc_else] = STATE(2032), + [sym_preproc_elif] = STATE(2032), + [sym_preproc_elifdef] = STATE(2032), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(207), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(17)] = { @@ -14757,181 +15600,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1948), - [sym_preproc_elif] = STATE(1948), - [sym_preproc_elifdef] = STATE(1948), + [sym_preproc_else] = STATE(2066), + [sym_preproc_elif] = STATE(2066), + [sym_preproc_elifdef] = STATE(2066), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(209), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(18)] = { @@ -14940,181 +15797,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(20), [sym_preproc_function_def] = STATE(20), [sym_preproc_call] = STATE(20), + [sym_preproc_errwarn] = STATE(20), + [sym_preproc_embed] = STATE(20), [sym_preproc_if] = STATE(20), [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(1867), - [sym_preproc_elif] = STATE(1867), - [sym_preproc_elifdef] = STATE(1867), + [sym_preproc_else] = STATE(1965), + [sym_preproc_elif] = STATE(1965), + [sym_preproc_elifdef] = STATE(1965), [sym_function_definition] = STATE(20), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(20), [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(20), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(211), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(19)] = { @@ -15123,181 +15994,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(21), [sym_preproc_function_def] = STATE(21), [sym_preproc_call] = STATE(21), + [sym_preproc_errwarn] = STATE(21), + [sym_preproc_embed] = STATE(21), [sym_preproc_if] = STATE(21), [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(1925), - [sym_preproc_elif] = STATE(1925), - [sym_preproc_elifdef] = STATE(1925), + [sym_preproc_else] = STATE(2011), + [sym_preproc_elif] = STATE(2011), + [sym_preproc_elifdef] = STATE(2011), [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(213), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(20)] = { @@ -15306,181 +16191,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1933), - [sym_preproc_elif] = STATE(1933), - [sym_preproc_elifdef] = STATE(1933), + [sym_preproc_else] = STATE(2021), + [sym_preproc_elif] = STATE(2021), + [sym_preproc_elifdef] = STATE(2021), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(215), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(21)] = { @@ -15489,181 +16388,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(1968), - [sym_preproc_elif] = STATE(1968), - [sym_preproc_elifdef] = STATE(1968), + [sym_preproc_else] = STATE(1817), + [sym_preproc_elif] = STATE(1817), + [sym_preproc_elifdef] = STATE(1817), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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_ifdef_token1] = ACTIONS(115), - [aux_sym_preproc_ifdef_token2] = ACTIONS(115), - [aux_sym_preproc_else_token1] = ACTIONS(117), - [aux_sym_preproc_elif_token1] = ACTIONS(119), - [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_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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(117), + [aux_sym_preproc_include_token1] = ACTIONS(119), + [aux_sym_preproc_def_token1] = ACTIONS(121), + [aux_sym_preproc_errwarn_token1] = ACTIONS(123), + [aux_sym_preproc_errwarn_token2] = ACTIONS(123), + [aux_sym_preproc_embed_token1] = ACTIONS(125), + [aux_sym_preproc_if_token1] = ACTIONS(127), + [aux_sym_preproc_if_token2] = ACTIONS(217), + [aux_sym_preproc_ifdef_token1] = ACTIONS(131), + [aux_sym_preproc_ifdef_token2] = ACTIONS(131), + [aux_sym_preproc_else_token1] = ACTIONS(133), + [aux_sym_preproc_elif_token1] = ACTIONS(135), + [aux_sym_preproc_elifdef_token1] = ACTIONS(137), + [aux_sym_preproc_elifdef_token2] = ACTIONS(137), + [sym_preproc_directive] = ACTIONS(139), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(147), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(22)] = { @@ -15672,178 +16585,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(22), [sym_preproc_function_def] = STATE(22), [sym_preproc_call] = STATE(22), + [sym_preproc_errwarn] = STATE(22), + [sym_preproc_embed] = STATE(22), [sym_preproc_if] = STATE(22), [sym_preproc_ifdef] = STATE(22), [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(131), + [sym__old_style_function_definition] = STATE(120), [sym_declaration] = STATE(22), [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1132), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1165), [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_ms_call_modifier] = STATE(686), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(782), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(137), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(826), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(131), [sym_statement] = STATE(22), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(219), + [aux_sym_preproc_include_token1] = ACTIONS(222), + [aux_sym_preproc_def_token1] = ACTIONS(225), + [aux_sym_preproc_errwarn_token1] = ACTIONS(228), + [aux_sym_preproc_errwarn_token2] = ACTIONS(228), + [aux_sym_preproc_embed_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(234), + [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(239), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(237), + [aux_sym_preproc_elifdef_token1] = ACTIONS(237), + [aux_sym_preproc_elifdef_token2] = ACTIONS(237), + [sym_preproc_directive] = ACTIONS(242), + [anon_sym_LPAREN2] = ACTIONS(245), + [anon_sym_BANG] = ACTIONS(248), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(254), + [anon_sym_AMP] = ACTIONS(254), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym___extension__] = ACTIONS(260), + [anon_sym_typedef] = ACTIONS(263), + [anon_sym_extern] = ACTIONS(266), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym___attribute] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(272), + [anon_sym___declspec] = ACTIONS(275), + [anon_sym___cdecl] = ACTIONS(278), + [anon_sym___clrcall] = ACTIONS(278), + [anon_sym___stdcall] = ACTIONS(278), + [anon_sym___fastcall] = ACTIONS(278), + [anon_sym___thiscall] = ACTIONS(278), + [anon_sym___vectorcall] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(281), + [anon_sym_signed] = ACTIONS(284), + [anon_sym_unsigned] = ACTIONS(284), + [anon_sym_long] = ACTIONS(284), + [anon_sym_short] = ACTIONS(284), + [anon_sym_static] = ACTIONS(287), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(287), + [anon_sym_inline] = ACTIONS(287), + [anon_sym___inline] = ACTIONS(287), + [anon_sym___inline__] = ACTIONS(287), + [anon_sym___forceinline] = ACTIONS(287), + [anon_sym_thread_local] = ACTIONS(287), + [anon_sym___thread] = ACTIONS(287), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [anon_sym__Nonnull] = ACTIONS(293), + [anon_sym_alignas] = ACTIONS(296), + [anon_sym__Alignas] = ACTIONS(296), + [aux_sym_primitive_type_token1] = ACTIONS(299), + [anon_sym__BitInt] = ACTIONS(302), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_struct] = ACTIONS(308), + [anon_sym_union] = ACTIONS(311), + [anon_sym_if] = ACTIONS(314), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(323), + [anon_sym_while] = ACTIONS(326), + [anon_sym_do] = ACTIONS(329), + [anon_sym_for] = ACTIONS(332), + [anon_sym_return] = ACTIONS(335), + [anon_sym_break] = ACTIONS(338), + [anon_sym_continue] = ACTIONS(341), + [anon_sym_goto] = ACTIONS(344), + [anon_sym___try] = ACTIONS(347), + [anon_sym___leave] = ACTIONS(350), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(356), + [anon_sym___alignof__] = ACTIONS(359), + [anon_sym___alignof] = ACTIONS(359), + [anon_sym__alignof] = ACTIONS(359), + [anon_sym_alignof] = ACTIONS(359), + [anon_sym__Alignof] = ACTIONS(359), + [anon_sym_offsetof] = ACTIONS(362), + [anon_sym_static_assert] = ACTIONS(365), + [anon_sym__Static_assert] = ACTIONS(365), + [anon_sym_typeof] = ACTIONS(368), + [anon_sym_typeof_unqual] = ACTIONS(368), + [anon_sym__Generic] = ACTIONS(371), + [anon_sym_asm] = ACTIONS(374), + [anon_sym___asm__] = ACTIONS(374), + [anon_sym___asm] = ACTIONS(374), + [sym_number_literal] = ACTIONS(377), + [anon_sym_L_SQUOTE] = ACTIONS(380), + [anon_sym_u_SQUOTE] = ACTIONS(380), + [anon_sym_U_SQUOTE] = ACTIONS(380), + [anon_sym_u8_SQUOTE] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(380), + [anon_sym_L_DQUOTE] = ACTIONS(383), + [anon_sym_u_DQUOTE] = ACTIONS(383), + [anon_sym_U_DQUOTE] = ACTIONS(383), + [anon_sym_u8_DQUOTE] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_true] = ACTIONS(386), + [sym_false] = ACTIONS(386), + [anon_sym_NULL] = ACTIONS(389), + [anon_sym_nullptr] = ACTIONS(389), [sym_comment] = ACTIONS(3), }, [STATE(23)] = { @@ -15852,2638 +16779,2848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(25), [sym_preproc_function_def] = STATE(25), [sym_preproc_call] = STATE(25), + [sym_preproc_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), [sym_preproc_if] = STATE(25), [sym_preproc_ifdef] = STATE(25), [sym_function_definition] = STATE(25), - [sym__old_style_function_definition] = STATE(268), + [sym__old_style_function_definition] = STATE(297), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(25), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(25), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(418), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(24)] = { - [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(282), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1133), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(688), - [sym_compound_statement] = STATE(178), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(789), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(311), - [sym_statement] = STATE(36), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(408), - [aux_sym_preproc_include_token1] = ACTIONS(410), - [aux_sym_preproc_def_token1] = ACTIONS(412), - [aux_sym_preproc_if_token1] = ACTIONS(414), - [aux_sym_preproc_if_token2] = ACTIONS(416), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(424), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(428), - [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(430), - [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(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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__block_item] = STATE(30), + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_errwarn] = STATE(30), + [sym_preproc_embed] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(30), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(446), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(25)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(458), - [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_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__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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(448), + [aux_sym_preproc_include_token1] = ACTIONS(451), + [aux_sym_preproc_def_token1] = ACTIONS(454), + [aux_sym_preproc_errwarn_token1] = ACTIONS(457), + [aux_sym_preproc_errwarn_token2] = ACTIONS(457), + [aux_sym_preproc_embed_token1] = ACTIONS(460), + [aux_sym_preproc_if_token1] = ACTIONS(463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(466), + [sym_preproc_directive] = ACTIONS(469), + [anon_sym_LPAREN2] = ACTIONS(245), + [anon_sym_BANG] = ACTIONS(248), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(254), + [anon_sym_AMP] = ACTIONS(254), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym___extension__] = ACTIONS(475), + [anon_sym_typedef] = ACTIONS(478), + [anon_sym_extern] = ACTIONS(481), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym___attribute] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(272), + [anon_sym___declspec] = ACTIONS(275), + [anon_sym___cdecl] = ACTIONS(278), + [anon_sym___clrcall] = ACTIONS(278), + [anon_sym___stdcall] = ACTIONS(278), + [anon_sym___fastcall] = ACTIONS(278), + [anon_sym___thiscall] = ACTIONS(278), + [anon_sym___vectorcall] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(487), + [anon_sym_signed] = ACTIONS(284), + [anon_sym_unsigned] = ACTIONS(284), + [anon_sym_long] = ACTIONS(284), + [anon_sym_short] = ACTIONS(284), + [anon_sym_static] = ACTIONS(287), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(287), + [anon_sym_inline] = ACTIONS(287), + [anon_sym___inline] = ACTIONS(287), + [anon_sym___inline__] = ACTIONS(287), + [anon_sym___forceinline] = ACTIONS(287), + [anon_sym_thread_local] = ACTIONS(287), + [anon_sym___thread] = ACTIONS(287), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [anon_sym__Nonnull] = ACTIONS(293), + [anon_sym_alignas] = ACTIONS(296), + [anon_sym__Alignas] = ACTIONS(296), + [aux_sym_primitive_type_token1] = ACTIONS(299), + [anon_sym__BitInt] = ACTIONS(302), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_struct] = ACTIONS(308), + [anon_sym_union] = ACTIONS(311), + [anon_sym_if] = ACTIONS(489), + [anon_sym_switch] = ACTIONS(492), + [anon_sym_case] = ACTIONS(495), + [anon_sym_default] = ACTIONS(498), + [anon_sym_while] = ACTIONS(501), + [anon_sym_do] = ACTIONS(504), + [anon_sym_for] = ACTIONS(507), + [anon_sym_return] = ACTIONS(510), + [anon_sym_break] = ACTIONS(513), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_goto] = ACTIONS(519), + [anon_sym___try] = ACTIONS(522), + [anon_sym___leave] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(356), + [anon_sym___alignof__] = ACTIONS(359), + [anon_sym___alignof] = ACTIONS(359), + [anon_sym__alignof] = ACTIONS(359), + [anon_sym_alignof] = ACTIONS(359), + [anon_sym__Alignof] = ACTIONS(359), + [anon_sym_offsetof] = ACTIONS(362), + [anon_sym_static_assert] = ACTIONS(365), + [anon_sym__Static_assert] = ACTIONS(365), + [anon_sym_typeof] = ACTIONS(368), + [anon_sym_typeof_unqual] = ACTIONS(368), + [anon_sym__Generic] = ACTIONS(371), + [anon_sym_asm] = ACTIONS(374), + [anon_sym___asm__] = ACTIONS(374), + [anon_sym___asm] = ACTIONS(374), + [sym_number_literal] = ACTIONS(377), + [anon_sym_L_SQUOTE] = ACTIONS(380), + [anon_sym_u_SQUOTE] = ACTIONS(380), + [anon_sym_U_SQUOTE] = ACTIONS(380), + [anon_sym_u8_SQUOTE] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(380), + [anon_sym_L_DQUOTE] = ACTIONS(383), + [anon_sym_u_DQUOTE] = ACTIONS(383), + [anon_sym_U_DQUOTE] = ACTIONS(383), + [anon_sym_u8_DQUOTE] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_true] = ACTIONS(386), + [sym_false] = ACTIONS(386), + [anon_sym_NULL] = ACTIONS(389), + [anon_sym_nullptr] = ACTIONS(389), [sym_comment] = ACTIONS(3), }, [STATE(26)] = { - [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(282), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1133), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(688), - [sym_compound_statement] = STATE(178), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(789), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(311), - [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(460), - [aux_sym_preproc_include_token1] = ACTIONS(463), - [aux_sym_preproc_def_token1] = ACTIONS(466), - [aux_sym_preproc_if_token1] = ACTIONS(469), - [aux_sym_preproc_if_token2] = ACTIONS(215), - [aux_sym_preproc_ifdef_token1] = ACTIONS(472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(472), - [sym_preproc_directive] = ACTIONS(475), - [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(478), - [anon_sym___extension__] = ACTIONS(481), - [anon_sym_typedef] = ACTIONS(484), - [anon_sym_extern] = ACTIONS(487), - [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(490), - [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(493), - [anon_sym_switch] = ACTIONS(496), - [anon_sym_case] = ACTIONS(499), - [anon_sym_default] = ACTIONS(502), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(508), - [anon_sym_for] = ACTIONS(511), - [anon_sym_return] = ACTIONS(514), - [anon_sym_break] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(526), - [anon_sym___leave] = ACTIONS(529), - [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__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_errwarn] = STATE(28), + [sym_preproc_embed] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_function_definition] = STATE(28), + [sym__old_style_function_definition] = STATE(306), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1167), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(680), + [sym_compound_statement] = STATE(195), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(818), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(28), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(528), + [aux_sym_preproc_include_token1] = ACTIONS(530), + [aux_sym_preproc_def_token1] = ACTIONS(532), + [aux_sym_preproc_errwarn_token1] = ACTIONS(534), + [aux_sym_preproc_errwarn_token2] = ACTIONS(534), + [aux_sym_preproc_embed_token1] = ACTIONS(536), + [aux_sym_preproc_if_token1] = ACTIONS(538), + [aux_sym_preproc_if_token2] = ACTIONS(540), + [aux_sym_preproc_ifdef_token1] = ACTIONS(542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(542), + [sym_preproc_directive] = ACTIONS(544), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(552), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(27)] = { + [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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(28)] = { [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_errwarn] = STATE(28), + [sym_preproc_embed] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), [sym_function_definition] = STATE(28), - [sym__old_style_function_definition] = STATE(268), + [sym__old_style_function_definition] = STATE(306), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1167), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(680), + [sym_compound_statement] = STATE(195), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(818), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(286), [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(28), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(532), - [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_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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(584), + [aux_sym_preproc_include_token1] = ACTIONS(587), + [aux_sym_preproc_def_token1] = ACTIONS(590), + [aux_sym_preproc_errwarn_token1] = ACTIONS(593), + [aux_sym_preproc_errwarn_token2] = ACTIONS(593), + [aux_sym_preproc_embed_token1] = ACTIONS(596), + [aux_sym_preproc_if_token1] = ACTIONS(599), + [aux_sym_preproc_if_token2] = ACTIONS(237), + [aux_sym_preproc_ifdef_token1] = ACTIONS(602), + [aux_sym_preproc_ifdef_token2] = ACTIONS(602), + [sym_preproc_directive] = ACTIONS(605), + [anon_sym_LPAREN2] = ACTIONS(245), + [anon_sym_BANG] = ACTIONS(248), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(251), + [anon_sym_STAR] = ACTIONS(254), + [anon_sym_AMP] = ACTIONS(254), + [anon_sym_SEMI] = ACTIONS(608), + [anon_sym___extension__] = ACTIONS(611), + [anon_sym_typedef] = ACTIONS(614), + [anon_sym_extern] = ACTIONS(617), + [anon_sym___attribute__] = ACTIONS(269), + [anon_sym___attribute] = ACTIONS(269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(272), + [anon_sym___declspec] = ACTIONS(275), + [anon_sym___cdecl] = ACTIONS(278), + [anon_sym___clrcall] = ACTIONS(278), + [anon_sym___stdcall] = ACTIONS(278), + [anon_sym___fastcall] = ACTIONS(278), + [anon_sym___thiscall] = ACTIONS(278), + [anon_sym___vectorcall] = ACTIONS(278), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_signed] = ACTIONS(284), + [anon_sym_unsigned] = ACTIONS(284), + [anon_sym_long] = ACTIONS(284), + [anon_sym_short] = ACTIONS(284), + [anon_sym_static] = ACTIONS(287), + [anon_sym_auto] = ACTIONS(290), + [anon_sym_register] = ACTIONS(287), + [anon_sym_inline] = ACTIONS(287), + [anon_sym___inline] = ACTIONS(287), + [anon_sym___inline__] = ACTIONS(287), + [anon_sym___forceinline] = ACTIONS(287), + [anon_sym_thread_local] = ACTIONS(287), + [anon_sym___thread] = ACTIONS(287), + [anon_sym_const] = ACTIONS(293), + [anon_sym_constexpr] = ACTIONS(293), + [anon_sym_volatile] = ACTIONS(293), + [anon_sym_restrict] = ACTIONS(293), + [anon_sym___restrict__] = ACTIONS(293), + [anon_sym__Atomic] = ACTIONS(293), + [anon_sym__Noreturn] = ACTIONS(293), + [anon_sym_noreturn] = ACTIONS(293), + [anon_sym__Nonnull] = ACTIONS(293), + [anon_sym_alignas] = ACTIONS(296), + [anon_sym__Alignas] = ACTIONS(296), + [aux_sym_primitive_type_token1] = ACTIONS(299), + [anon_sym__BitInt] = ACTIONS(302), + [anon_sym_enum] = ACTIONS(305), + [anon_sym_struct] = ACTIONS(308), + [anon_sym_union] = ACTIONS(311), + [anon_sym_if] = ACTIONS(623), + [anon_sym_switch] = ACTIONS(626), + [anon_sym_case] = ACTIONS(629), + [anon_sym_default] = ACTIONS(632), + [anon_sym_while] = ACTIONS(635), + [anon_sym_do] = ACTIONS(638), + [anon_sym_for] = ACTIONS(641), + [anon_sym_return] = ACTIONS(644), + [anon_sym_break] = ACTIONS(647), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_goto] = ACTIONS(653), + [anon_sym___try] = ACTIONS(656), + [anon_sym___leave] = ACTIONS(659), + [anon_sym_DASH_DASH] = ACTIONS(353), + [anon_sym_PLUS_PLUS] = ACTIONS(353), + [anon_sym_sizeof] = ACTIONS(356), + [anon_sym___alignof__] = ACTIONS(359), + [anon_sym___alignof] = ACTIONS(359), + [anon_sym__alignof] = ACTIONS(359), + [anon_sym_alignof] = ACTIONS(359), + [anon_sym__Alignof] = ACTIONS(359), + [anon_sym_offsetof] = ACTIONS(362), + [anon_sym_static_assert] = ACTIONS(365), + [anon_sym__Static_assert] = ACTIONS(365), + [anon_sym_typeof] = ACTIONS(368), + [anon_sym_typeof_unqual] = ACTIONS(368), + [anon_sym__Generic] = ACTIONS(371), + [anon_sym_asm] = ACTIONS(374), + [anon_sym___asm__] = ACTIONS(374), + [anon_sym___asm] = ACTIONS(374), + [sym_number_literal] = ACTIONS(377), + [anon_sym_L_SQUOTE] = ACTIONS(380), + [anon_sym_u_SQUOTE] = ACTIONS(380), + [anon_sym_U_SQUOTE] = ACTIONS(380), + [anon_sym_u8_SQUOTE] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(380), + [anon_sym_L_DQUOTE] = ACTIONS(383), + [anon_sym_u_DQUOTE] = ACTIONS(383), + [anon_sym_U_DQUOTE] = ACTIONS(383), + [anon_sym_u8_DQUOTE] = ACTIONS(383), + [anon_sym_DQUOTE] = ACTIONS(383), + [sym_true] = ACTIONS(386), + [sym_false] = ACTIONS(386), + [anon_sym_NULL] = ACTIONS(389), + [anon_sym_nullptr] = ACTIONS(389), [sym_comment] = ACTIONS(3), }, - [STATE(28)] = { + [STATE(29)] = { [sym__block_item] = STATE(31), [sym_preproc_include] = STATE(31), [sym_preproc_def] = STATE(31), [sym_preproc_function_def] = STATE(31), [sym_preproc_call] = STATE(31), + [sym_preproc_errwarn] = STATE(31), + [sym_preproc_embed] = STATE(31), [sym_preproc_if] = STATE(31), [sym_preproc_ifdef] = STATE(31), [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(268), + [sym__old_style_function_definition] = STATE(297), [sym_declaration] = STATE(31), [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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), - }, - [STATE(29)] = { - [sym__block_item] = STATE(40), - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym__old_style_function_definition] = STATE(268), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(40), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(30)] = { - [sym__block_item] = STATE(32), - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_function_definition] = STATE(32), - [sym__old_style_function_definition] = STATE(268), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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__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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(31)] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym__old_style_function_definition] = STATE(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(540), - [aux_sym_preproc_include_token1] = ACTIONS(543), - [aux_sym_preproc_def_token1] = ACTIONS(546), - [aux_sym_preproc_if_token1] = ACTIONS(549), - [aux_sym_preproc_ifdef_token1] = ACTIONS(552), - [aux_sym_preproc_ifdef_token2] = ACTIONS(552), - [sym_preproc_directive] = ACTIONS(555), - [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(558), - [anon_sym___extension__] = ACTIONS(561), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(567), - [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(570), - [anon_sym_RBRACE] = ACTIONS(573), - [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(575), - [anon_sym_switch] = ACTIONS(578), - [anon_sym_case] = ACTIONS(581), - [anon_sym_default] = ACTIONS(584), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(590), - [anon_sym_for] = ACTIONS(593), - [anon_sym_return] = ACTIONS(596), - [anon_sym_break] = ACTIONS(599), - [anon_sym_continue] = ACTIONS(602), - [anon_sym_goto] = ACTIONS(605), - [anon_sym___try] = ACTIONS(608), - [anon_sym___leave] = ACTIONS(611), - [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), - }, - [STATE(32)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(614), - [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_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__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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(32)] = { + [sym__block_item] = STATE(33), + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_errwarn] = STATE(33), + [sym_preproc_embed] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(33), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(33)] = { - [sym__block_item] = STATE(34), - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym__old_style_function_definition] = STATE(268), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(34), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(616), - [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_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__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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(34)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(618), - [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_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__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_errwarn] = STATE(35), + [sym_preproc_embed] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(35), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(35), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(35)] = { + [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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [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_errwarn] = STATE(37), + [sym_preproc_embed] = STATE(37), [sym_preproc_if] = STATE(37), [sym_preproc_ifdef] = STATE(37), [sym_function_definition] = STATE(37), - [sym__old_style_function_definition] = STATE(268), + [sym__old_style_function_definition] = STATE(297), [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), [sym_statement] = STATE(37), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(620), - [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_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), - }, - [STATE(36)] = { - [sym__block_item] = STATE(26), - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_function_definition] = STATE(26), - [sym__old_style_function_definition] = STATE(282), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1133), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(688), - [sym_compound_statement] = STATE(178), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(789), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(311), - [sym_statement] = STATE(26), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(26), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(408), - [aux_sym_preproc_include_token1] = ACTIONS(410), - [aux_sym_preproc_def_token1] = ACTIONS(412), - [aux_sym_preproc_if_token1] = ACTIONS(414), - [aux_sym_preproc_if_token2] = ACTIONS(622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(418), - [sym_preproc_directive] = ACTIONS(420), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(424), - [anon_sym_typedef] = ACTIONS(426), - [anon_sym_extern] = ACTIONS(428), - [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(430), - [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(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(37)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(624), - [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_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__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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(38)] = { @@ -18492,1406 +19629,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_def] = STATE(39), [sym_preproc_function_def] = STATE(39), [sym_preproc_call] = STATE(39), + [sym_preproc_errwarn] = STATE(39), + [sym_preproc_embed] = STATE(39), [sym_preproc_if] = STATE(39), [sym_preproc_ifdef] = STATE(39), [sym_function_definition] = STATE(39), - [sym__old_style_function_definition] = STATE(268), + [sym__old_style_function_definition] = STATE(297), [sym_declaration] = STATE(39), [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), [sym_statement] = STATE(39), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(626), - [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_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), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(39)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(628), - [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_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__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_errwarn] = STATE(25), + [sym_preproc_embed] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(25), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(40)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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(630), - [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_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__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_errwarn] = STATE(27), + [sym_preproc_embed] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(27), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(41)] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym__old_style_function_definition] = STATE(268), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(42), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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__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_errwarn] = STATE(26), + [sym_preproc_embed] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(306), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1167), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(680), + [sym_compound_statement] = STATE(195), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(818), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(286), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(528), + [aux_sym_preproc_include_token1] = ACTIONS(530), + [aux_sym_preproc_def_token1] = ACTIONS(532), + [aux_sym_preproc_errwarn_token1] = ACTIONS(534), + [aux_sym_preproc_errwarn_token2] = ACTIONS(534), + [aux_sym_preproc_embed_token1] = ACTIONS(536), + [aux_sym_preproc_if_token1] = ACTIONS(538), + [aux_sym_preproc_if_token2] = ACTIONS(686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(542), + [sym_preproc_directive] = ACTIONS(544), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(552), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(42)] = { - [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(268), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1139), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(666), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(801), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(269), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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__block_item] = STATE(23), + [sym_preproc_include] = STATE(23), + [sym_preproc_def] = STATE(23), + [sym_preproc_function_def] = STATE(23), + [sym_preproc_call] = STATE(23), + [sym_preproc_errwarn] = STATE(23), + [sym_preproc_embed] = STATE(23), + [sym_preproc_if] = STATE(23), + [sym_preproc_ifdef] = STATE(23), + [sym_function_definition] = STATE(23), + [sym__old_style_function_definition] = STATE(297), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1166), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(685), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(828), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(281), + [sym_statement] = STATE(23), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(392), + [aux_sym_preproc_include_token1] = ACTIONS(394), + [aux_sym_preproc_def_token1] = ACTIONS(396), + [aux_sym_preproc_errwarn_token1] = ACTIONS(398), + [aux_sym_preproc_errwarn_token2] = ACTIONS(398), + [aux_sym_preproc_embed_token1] = ACTIONS(400), + [aux_sym_preproc_if_token1] = ACTIONS(402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(404), + [aux_sym_preproc_ifdef_token2] = ACTIONS(404), + [sym_preproc_directive] = ACTIONS(406), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(414), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(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(320), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1128), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(796), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(356), - [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(1101), - [sym__string] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(928), - [sym_unary_expression] = STATE(1103), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_alignof_expression] = STATE(1103), - [sym_offsetof_expression] = STATE(1103), - [sym_generic_expression] = STATE(1103), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_gnu_asm_expression] = STATE(1103), - [sym_extension_expression] = STATE(1103), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(928), - [sym_char_literal] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(1103), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - }, - [STATE(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(320), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1128), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(683), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(796), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(356), - [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(1101), - [sym__string] = STATE(1103), - [sym_conditional_expression] = STATE(1103), - [sym_assignment_expression] = STATE(1103), - [sym_pointer_expression] = STATE(928), - [sym_unary_expression] = STATE(1103), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(1103), - [sym_cast_expression] = STATE(1103), - [sym_sizeof_expression] = STATE(1103), - [sym_alignof_expression] = STATE(1103), - [sym_offsetof_expression] = STATE(1103), - [sym_generic_expression] = STATE(1103), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_gnu_asm_expression] = STATE(1103), - [sym_extension_expression] = STATE(1103), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(1103), - [sym_parenthesized_expression] = STATE(928), - [sym_char_literal] = STATE(1103), - [sym_concatenated_string] = STATE(1103), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(1103), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(785), + [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_errwarn] = STATE(44), + [sym_preproc_embed] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(341), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1168), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(679), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(821), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(343), + [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(1134), + [sym__string] = STATE(1133), + [sym_conditional_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1133), + [sym_pointer_expression] = STATE(958), + [sym_unary_expression] = STATE(1133), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(1133), + [sym_cast_expression] = STATE(1133), + [sym_sizeof_expression] = STATE(1133), + [sym_alignof_expression] = STATE(1133), + [sym_offsetof_expression] = STATE(1133), + [sym_static_assert_expression] = STATE(1133), + [sym_typeof_expression] = STATE(1133), + [sym_generic_expression] = STATE(1133), + [sym_subscript_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_gnu_asm_expression] = STATE(1133), + [sym_extension_expression] = STATE(1133), + [sym_field_expression] = STATE(958), + [sym_compound_literal_expression] = STATE(1133), + [sym_parenthesized_expression] = STATE(958), + [sym_char_literal] = STATE(1133), + [sym_concatenated_string] = STATE(1133), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(1133), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(690), [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), - [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___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_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(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___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(95), - [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(101), - [sym_false] = ACTIONS(101), - [anon_sym_NULL] = ACTIONS(103), - [anon_sym_nullptr] = ACTIONS(103), + [aux_sym_preproc_errwarn_token1] = ACTIONS(13), + [aux_sym_preproc_errwarn_token2] = ACTIONS(13), + [aux_sym_preproc_embed_token1] = ACTIONS(15), + [aux_sym_preproc_if_token1] = ACTIONS(17), + [aux_sym_preproc_ifdef_token1] = ACTIONS(19), + [aux_sym_preproc_ifdef_token2] = ACTIONS(19), + [sym_preproc_directive] = ACTIONS(21), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(37), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(107), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(113), + [sym_false] = ACTIONS(113), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(45)] = { - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(46), - [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), - [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(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_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(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___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(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_errwarn] = STATE(44), + [sym_preproc_embed] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_function_definition] = STATE(44), + [sym__old_style_function_definition] = STATE(341), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1168), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(679), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(821), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(343), + [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(1134), + [sym__string] = STATE(1133), + [sym_conditional_expression] = STATE(1133), + [sym_assignment_expression] = STATE(1133), + [sym_pointer_expression] = STATE(958), + [sym_unary_expression] = STATE(1133), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(1133), + [sym_cast_expression] = STATE(1133), + [sym_sizeof_expression] = STATE(1133), + [sym_alignof_expression] = STATE(1133), + [sym_offsetof_expression] = STATE(1133), + [sym_static_assert_expression] = STATE(1133), + [sym_typeof_expression] = STATE(1133), + [sym_generic_expression] = STATE(1133), + [sym_subscript_expression] = STATE(958), + [sym_call_expression] = STATE(958), + [sym_gnu_asm_expression] = STATE(1133), + [sym_extension_expression] = STATE(1133), + [sym_field_expression] = STATE(958), + [sym_compound_literal_expression] = STATE(1133), + [sym_parenthesized_expression] = STATE(958), + [sym_char_literal] = STATE(1133), + [sym_concatenated_string] = STATE(1133), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(1133), + [sym__empty_declaration] = STATE(44), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_identifier] = ACTIONS(694), + [aux_sym_preproc_include_token1] = ACTIONS(697), + [aux_sym_preproc_def_token1] = ACTIONS(700), + [aux_sym_preproc_errwarn_token1] = ACTIONS(703), + [aux_sym_preproc_errwarn_token2] = ACTIONS(703), + [aux_sym_preproc_embed_token1] = ACTIONS(706), + [aux_sym_preproc_if_token1] = ACTIONS(709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(712), + [sym_preproc_directive] = ACTIONS(715), + [anon_sym_LPAREN2] = ACTIONS(718), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym___extension__] = ACTIONS(733), + [anon_sym_typedef] = ACTIONS(736), + [anon_sym_extern] = ACTIONS(739), + [anon_sym___attribute__] = ACTIONS(742), + [anon_sym___attribute] = ACTIONS(742), + [anon_sym_LBRACK_LBRACK] = ACTIONS(745), + [anon_sym___declspec] = ACTIONS(748), + [anon_sym___cdecl] = ACTIONS(751), + [anon_sym___clrcall] = ACTIONS(751), + [anon_sym___stdcall] = ACTIONS(751), + [anon_sym___fastcall] = ACTIONS(751), + [anon_sym___thiscall] = ACTIONS(751), + [anon_sym___vectorcall] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_signed] = ACTIONS(757), + [anon_sym_unsigned] = ACTIONS(757), + [anon_sym_long] = ACTIONS(757), + [anon_sym_short] = ACTIONS(757), + [anon_sym_static] = ACTIONS(760), + [anon_sym_auto] = ACTIONS(763), + [anon_sym_register] = ACTIONS(760), + [anon_sym_inline] = ACTIONS(760), + [anon_sym___inline] = ACTIONS(760), + [anon_sym___inline__] = ACTIONS(760), + [anon_sym___forceinline] = ACTIONS(760), + [anon_sym_thread_local] = ACTIONS(760), + [anon_sym___thread] = ACTIONS(760), + [anon_sym_const] = ACTIONS(766), + [anon_sym_constexpr] = ACTIONS(766), + [anon_sym_volatile] = ACTIONS(766), + [anon_sym_restrict] = ACTIONS(766), + [anon_sym___restrict__] = ACTIONS(766), + [anon_sym__Atomic] = ACTIONS(766), + [anon_sym__Noreturn] = ACTIONS(766), + [anon_sym_noreturn] = ACTIONS(766), + [anon_sym__Nonnull] = ACTIONS(766), + [anon_sym_alignas] = ACTIONS(769), + [anon_sym__Alignas] = ACTIONS(769), + [aux_sym_primitive_type_token1] = ACTIONS(772), + [anon_sym__BitInt] = ACTIONS(775), + [anon_sym_enum] = ACTIONS(778), + [anon_sym_struct] = ACTIONS(781), + [anon_sym_union] = ACTIONS(784), + [anon_sym_if] = ACTIONS(787), + [anon_sym_switch] = ACTIONS(790), + [anon_sym_case] = ACTIONS(793), + [anon_sym_default] = ACTIONS(796), + [anon_sym_while] = ACTIONS(799), + [anon_sym_do] = ACTIONS(802), + [anon_sym_for] = ACTIONS(805), + [anon_sym_return] = ACTIONS(808), + [anon_sym_break] = ACTIONS(811), + [anon_sym_continue] = ACTIONS(814), + [anon_sym_goto] = ACTIONS(817), + [anon_sym_DASH_DASH] = ACTIONS(820), + [anon_sym_PLUS_PLUS] = ACTIONS(820), + [anon_sym_sizeof] = ACTIONS(823), + [anon_sym___alignof__] = ACTIONS(826), + [anon_sym___alignof] = ACTIONS(826), + [anon_sym__alignof] = ACTIONS(826), + [anon_sym_alignof] = ACTIONS(826), + [anon_sym__Alignof] = ACTIONS(826), + [anon_sym_offsetof] = ACTIONS(829), + [anon_sym_static_assert] = ACTIONS(832), + [anon_sym__Static_assert] = ACTIONS(832), + [anon_sym_typeof] = ACTIONS(835), + [anon_sym_typeof_unqual] = ACTIONS(835), + [anon_sym__Generic] = ACTIONS(838), + [anon_sym_asm] = ACTIONS(841), + [anon_sym___asm__] = ACTIONS(841), + [anon_sym___asm] = ACTIONS(841), + [sym_number_literal] = ACTIONS(844), + [anon_sym_L_SQUOTE] = ACTIONS(847), + [anon_sym_u_SQUOTE] = ACTIONS(847), + [anon_sym_U_SQUOTE] = ACTIONS(847), + [anon_sym_u8_SQUOTE] = ACTIONS(847), + [anon_sym_SQUOTE] = ACTIONS(847), + [anon_sym_L_DQUOTE] = ACTIONS(850), + [anon_sym_u_DQUOTE] = ACTIONS(850), + [anon_sym_U_DQUOTE] = ACTIONS(850), + [anon_sym_u8_DQUOTE] = ACTIONS(850), + [anon_sym_DQUOTE] = ACTIONS(850), + [sym_true] = ACTIONS(853), + [sym_false] = ACTIONS(853), + [anon_sym_NULL] = ACTIONS(856), + [anon_sym_nullptr] = ACTIONS(856), [sym_comment] = ACTIONS(3), }, - [STATE(46)] = { + [STATE(45)] = { [sym_declaration] = STATE(48), [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1169), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(48), [sym_labeled_statement] = STATE(48), [sym_expression_statement] = STATE(48), @@ -19906,159 +20976,350 @@ 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(1055), - [sym__string] = STATE(684), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [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(859), + [aux_sym_preproc_include_token1] = ACTIONS(861), + [aux_sym_preproc_def_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token2] = ACTIONS(861), + [aux_sym_preproc_embed_token1] = ACTIONS(861), + [aux_sym_preproc_if_token1] = ACTIONS(861), + [aux_sym_preproc_if_token2] = ACTIONS(861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(861), + [aux_sym_preproc_else_token1] = ACTIONS(861), + [aux_sym_preproc_elif_token1] = ACTIONS(861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(861), + [aux_sym_preproc_elifdef_token2] = ACTIONS(861), + [sym_preproc_directive] = ACTIONS(861), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(861), + [anon_sym___clrcall] = ACTIONS(861), + [anon_sym___stdcall] = ACTIONS(861), + [anon_sym___fastcall] = ACTIONS(861), + [anon_sym___thiscall] = ACTIONS(861), + [anon_sym___vectorcall] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_else] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(46)] = { + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1169), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(859), + [aux_sym_preproc_include_token1] = ACTIONS(863), + [aux_sym_preproc_def_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token2] = ACTIONS(863), + [aux_sym_preproc_embed_token1] = ACTIONS(863), + [aux_sym_preproc_if_token1] = ACTIONS(863), + [aux_sym_preproc_if_token2] = ACTIONS(863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(863), + [aux_sym_preproc_else_token1] = ACTIONS(863), + [aux_sym_preproc_elif_token1] = ACTIONS(863), + [aux_sym_preproc_elifdef_token1] = ACTIONS(863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(863), + [sym_preproc_directive] = ACTIONS(863), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(863), + [anon_sym___clrcall] = ACTIONS(863), + [anon_sym___stdcall] = ACTIONS(863), + [anon_sym___fastcall] = ACTIONS(863), + [anon_sym___thiscall] = ACTIONS(863), + [anon_sym___vectorcall] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_else] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(47)] = { [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1169), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(49), [sym_labeled_statement] = STATE(49), [sym_expression_statement] = STATE(49), @@ -20073,493 +21334,529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(49), [sym_seh_try_statement] = STATE(49), [sym_seh_leave_statement] = STATE(49), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [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), - [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(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_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(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___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(859), + [aux_sym_preproc_include_token1] = ACTIONS(865), + [aux_sym_preproc_def_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token2] = ACTIONS(865), + [aux_sym_preproc_embed_token1] = ACTIONS(865), + [aux_sym_preproc_if_token1] = ACTIONS(865), + [aux_sym_preproc_if_token2] = ACTIONS(865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(865), + [aux_sym_preproc_else_token1] = ACTIONS(865), + [aux_sym_preproc_elif_token1] = ACTIONS(865), + [aux_sym_preproc_elifdef_token1] = ACTIONS(865), + [aux_sym_preproc_elifdef_token2] = ACTIONS(865), + [sym_preproc_directive] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(865), + [anon_sym___clrcall] = ACTIONS(865), + [anon_sym___stdcall] = ACTIONS(865), + [anon_sym___fastcall] = ACTIONS(865), + [anon_sym___thiscall] = ACTIONS(865), + [anon_sym___vectorcall] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_else] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(48)] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1055), - [sym__string] = STATE(684), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1169), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(795), - [aux_sym_preproc_include_token1] = ACTIONS(798), - [aux_sym_preproc_def_token1] = ACTIONS(798), - [aux_sym_preproc_if_token1] = ACTIONS(798), - [aux_sym_preproc_if_token2] = ACTIONS(798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(798), - [aux_sym_preproc_else_token1] = ACTIONS(798), - [aux_sym_preproc_elif_token1] = ACTIONS(798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(798), - [aux_sym_preproc_elifdef_token2] = ACTIONS(798), - [sym_preproc_directive] = ACTIONS(798), - [anon_sym_LPAREN2] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym___extension__] = ACTIONS(815), - [anon_sym_typedef] = ACTIONS(818), - [anon_sym_extern] = ACTIONS(821), - [anon_sym___attribute__] = ACTIONS(824), - [anon_sym___attribute] = ACTIONS(824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(827), - [anon_sym___declspec] = ACTIONS(830), - [anon_sym___cdecl] = ACTIONS(798), - [anon_sym___clrcall] = ACTIONS(798), - [anon_sym___stdcall] = ACTIONS(798), - [anon_sym___fastcall] = ACTIONS(798), - [anon_sym___thiscall] = ACTIONS(798), - [anon_sym___vectorcall] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_signed] = ACTIONS(836), - [anon_sym_unsigned] = ACTIONS(836), - [anon_sym_long] = ACTIONS(836), - [anon_sym_short] = ACTIONS(836), - [anon_sym_static] = ACTIONS(821), - [anon_sym_auto] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_inline] = ACTIONS(821), - [anon_sym___inline] = ACTIONS(821), - [anon_sym___inline__] = ACTIONS(821), - [anon_sym___forceinline] = ACTIONS(821), - [anon_sym_thread_local] = ACTIONS(821), - [anon_sym___thread] = ACTIONS(821), - [anon_sym_const] = ACTIONS(839), - [anon_sym_constexpr] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_restrict] = ACTIONS(839), - [anon_sym___restrict__] = ACTIONS(839), - [anon_sym__Atomic] = ACTIONS(839), - [anon_sym__Noreturn] = ACTIONS(839), - [anon_sym_noreturn] = ACTIONS(839), - [anon_sym__Nonnull] = ACTIONS(839), - [anon_sym_alignas] = ACTIONS(842), - [anon_sym__Alignas] = ACTIONS(842), - [sym_primitive_type] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(848), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_union] = ACTIONS(854), - [anon_sym_if] = ACTIONS(857), - [anon_sym_else] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(860), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [anon_sym_while] = ACTIONS(863), - [anon_sym_do] = ACTIONS(866), - [anon_sym_for] = ACTIONS(869), - [anon_sym_return] = ACTIONS(872), - [anon_sym_break] = ACTIONS(875), - [anon_sym_continue] = ACTIONS(878), - [anon_sym_goto] = ACTIONS(881), - [anon_sym___try] = ACTIONS(884), - [anon_sym___leave] = ACTIONS(887), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_sizeof] = ACTIONS(893), - [anon_sym___alignof__] = ACTIONS(896), - [anon_sym___alignof] = ACTIONS(896), - [anon_sym__alignof] = ACTIONS(896), - [anon_sym_alignof] = ACTIONS(896), - [anon_sym__Alignof] = ACTIONS(896), - [anon_sym_offsetof] = ACTIONS(899), - [anon_sym__Generic] = ACTIONS(902), - [anon_sym_asm] = ACTIONS(905), - [anon_sym___asm__] = ACTIONS(905), - [anon_sym___asm] = ACTIONS(905), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(911), - [anon_sym_u_SQUOTE] = ACTIONS(911), - [anon_sym_U_SQUOTE] = ACTIONS(911), - [anon_sym_u8_SQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [anon_sym_NULL] = ACTIONS(920), - [anon_sym_nullptr] = ACTIONS(920), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(859), + [aux_sym_preproc_include_token1] = ACTIONS(867), + [aux_sym_preproc_def_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token2] = ACTIONS(867), + [aux_sym_preproc_embed_token1] = ACTIONS(867), + [aux_sym_preproc_if_token1] = ACTIONS(867), + [aux_sym_preproc_if_token2] = ACTIONS(867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(867), + [aux_sym_preproc_else_token1] = ACTIONS(867), + [aux_sym_preproc_elif_token1] = ACTIONS(867), + [aux_sym_preproc_elifdef_token1] = ACTIONS(867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(867), + [sym_preproc_directive] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(143), + [anon_sym_typedef] = ACTIONS(145), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(867), + [anon_sym___clrcall] = ACTIONS(867), + [anon_sym___stdcall] = ACTIONS(867), + [anon_sym___fastcall] = ACTIONS(867), + [anon_sym___thiscall] = ACTIONS(867), + [anon_sym___vectorcall] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_else] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(49)] = { - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1055), - [sym__string] = STATE(684), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1169), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1083), + [sym__string] = STATE(699), [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(48), - [sym_identifier] = ACTIONS(787), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [aux_sym_preproc_else_token1] = ACTIONS(923), - [aux_sym_preproc_elif_token1] = ACTIONS(923), - [aux_sym_preproc_elifdef_token1] = ACTIONS(923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [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(923), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [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_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(869), + [aux_sym_preproc_include_token1] = ACTIONS(872), + [aux_sym_preproc_def_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token2] = ACTIONS(872), + [aux_sym_preproc_embed_token1] = ACTIONS(872), + [aux_sym_preproc_if_token1] = ACTIONS(872), + [aux_sym_preproc_if_token2] = ACTIONS(872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(872), + [aux_sym_preproc_else_token1] = ACTIONS(872), + [aux_sym_preproc_elif_token1] = ACTIONS(872), + [aux_sym_preproc_elifdef_token1] = ACTIONS(872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(872), + [sym_preproc_directive] = ACTIONS(872), + [anon_sym_LPAREN2] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym___extension__] = ACTIONS(889), + [anon_sym_typedef] = ACTIONS(892), + [anon_sym_extern] = ACTIONS(895), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym___attribute] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(901), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(872), + [anon_sym___clrcall] = ACTIONS(872), + [anon_sym___stdcall] = ACTIONS(872), + [anon_sym___fastcall] = ACTIONS(872), + [anon_sym___thiscall] = ACTIONS(872), + [anon_sym___vectorcall] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_static] = ACTIONS(895), + [anon_sym_auto] = ACTIONS(913), + [anon_sym_register] = ACTIONS(895), + [anon_sym_inline] = ACTIONS(895), + [anon_sym___inline] = ACTIONS(895), + [anon_sym___inline__] = ACTIONS(895), + [anon_sym___forceinline] = ACTIONS(895), + [anon_sym_thread_local] = ACTIONS(895), + [anon_sym___thread] = ACTIONS(895), + [anon_sym_const] = ACTIONS(916), + [anon_sym_constexpr] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym___restrict__] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym__Noreturn] = ACTIONS(916), + [anon_sym_noreturn] = ACTIONS(916), + [anon_sym__Nonnull] = ACTIONS(916), + [anon_sym_alignas] = ACTIONS(919), + [anon_sym__Alignas] = ACTIONS(919), + [aux_sym_primitive_type_token1] = ACTIONS(922), + [anon_sym__BitInt] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(937), + [anon_sym_else] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(940), + [anon_sym_case] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_while] = ACTIONS(943), + [anon_sym_do] = ACTIONS(946), + [anon_sym_for] = ACTIONS(949), + [anon_sym_return] = ACTIONS(952), + [anon_sym_break] = ACTIONS(955), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_goto] = ACTIONS(961), + [anon_sym___try] = ACTIONS(964), + [anon_sym___leave] = ACTIONS(967), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(973), + [anon_sym___alignof__] = ACTIONS(976), + [anon_sym___alignof] = ACTIONS(976), + [anon_sym__alignof] = ACTIONS(976), + [anon_sym_alignof] = ACTIONS(976), + [anon_sym__Alignof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(979), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym__Static_assert] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_typeof_unqual] = ACTIONS(985), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(991), + [anon_sym___asm__] = ACTIONS(991), + [anon_sym___asm] = ACTIONS(991), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(997), + [anon_sym_u_SQUOTE] = ACTIONS(997), + [anon_sym_U_SQUOTE] = ACTIONS(997), + [anon_sym_u8_SQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_L_DQUOTE] = ACTIONS(1000), + [anon_sym_u_DQUOTE] = ACTIONS(1000), + [anon_sym_U_DQUOTE] = ACTIONS(1000), + [anon_sym_u8_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [anon_sym_NULL] = ACTIONS(1006), + [anon_sym_nullptr] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, [STATE(50)] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1140), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -20574,155 +21871,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(925), - [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(927), - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(1009), + [sym_identifier] = ACTIONS(1011), + [aux_sym_preproc_include_token1] = ACTIONS(867), + [aux_sym_preproc_def_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token2] = ACTIONS(867), + [aux_sym_preproc_embed_token1] = ACTIONS(867), + [aux_sym_preproc_if_token1] = ACTIONS(867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(867), + [sym_preproc_directive] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(867), + [anon_sym___clrcall] = ACTIONS(867), + [anon_sym___stdcall] = ACTIONS(867), + [anon_sym___fastcall] = ACTIONS(867), + [anon_sym___thiscall] = ACTIONS(867), + [anon_sym___vectorcall] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(51)] = { + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1175), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(1019), + [aux_sym_preproc_include_token1] = ACTIONS(861), + [aux_sym_preproc_def_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token2] = ACTIONS(861), + [aux_sym_preproc_embed_token1] = ACTIONS(861), + [aux_sym_preproc_if_token1] = ACTIONS(861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(861), + [sym_preproc_directive] = ACTIONS(861), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(861), + [anon_sym___clrcall] = ACTIONS(861), + [anon_sym___stdcall] = ACTIONS(861), + [anon_sym___fastcall] = ACTIONS(861), + [anon_sym___thiscall] = ACTIONS(861), + [anon_sym___vectorcall] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(52)] = { [sym_declaration] = STATE(56), [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1175), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(56), [sym_labeled_statement] = STATE(56), [sym_expression_statement] = STATE(56), @@ -20737,155 +22221,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(56), [sym_seh_try_statement] = STATE(56), [sym_seh_leave_statement] = STATE(56), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [aux_sym_case_statement_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(929), - [sym_identifier] = ACTIONS(931), - [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), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(933), - [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___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_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(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(935), - [anon_sym___leave] = ACTIONS(937), - [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(1019), + [aux_sym_preproc_include_token1] = ACTIONS(863), + [aux_sym_preproc_def_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token2] = ACTIONS(863), + [aux_sym_preproc_embed_token1] = ACTIONS(863), + [aux_sym_preproc_if_token1] = ACTIONS(863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(863), + [sym_preproc_directive] = ACTIONS(863), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(863), + [anon_sym___clrcall] = ACTIONS(863), + [anon_sym___stdcall] = ACTIONS(863), + [anon_sym___fastcall] = ACTIONS(863), + [anon_sym___thiscall] = ACTIONS(863), + [anon_sym___vectorcall] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(52)] = { + [STATE(53)] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1175), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1019), + [aux_sym_preproc_include_token1] = ACTIONS(867), + [aux_sym_preproc_def_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token2] = ACTIONS(867), + [aux_sym_preproc_embed_token1] = ACTIONS(867), + [aux_sym_preproc_if_token1] = ACTIONS(867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(867), + [sym_preproc_directive] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(867), + [anon_sym___clrcall] = ACTIONS(867), + [anon_sym___stdcall] = ACTIONS(867), + [anon_sym___fastcall] = ACTIONS(867), + [anon_sym___thiscall] = ACTIONS(867), + [anon_sym___vectorcall] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(54)] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1175), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1025), + [aux_sym_preproc_include_token1] = ACTIONS(872), + [aux_sym_preproc_def_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token2] = ACTIONS(872), + [aux_sym_preproc_embed_token1] = ACTIONS(872), + [aux_sym_preproc_if_token1] = ACTIONS(872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(872), + [sym_preproc_directive] = ACTIONS(872), + [anon_sym_LPAREN2] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym___extension__] = ACTIONS(1031), + [anon_sym_typedef] = ACTIONS(1034), + [anon_sym_extern] = ACTIONS(895), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym___attribute] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(901), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(872), + [anon_sym___clrcall] = ACTIONS(872), + [anon_sym___stdcall] = ACTIONS(872), + [anon_sym___fastcall] = ACTIONS(872), + [anon_sym___thiscall] = ACTIONS(872), + [anon_sym___vectorcall] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1037), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_static] = ACTIONS(895), + [anon_sym_auto] = ACTIONS(913), + [anon_sym_register] = ACTIONS(895), + [anon_sym_inline] = ACTIONS(895), + [anon_sym___inline] = ACTIONS(895), + [anon_sym___inline__] = ACTIONS(895), + [anon_sym___forceinline] = ACTIONS(895), + [anon_sym_thread_local] = ACTIONS(895), + [anon_sym___thread] = ACTIONS(895), + [anon_sym_const] = ACTIONS(916), + [anon_sym_constexpr] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym___restrict__] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym__Noreturn] = ACTIONS(916), + [anon_sym_noreturn] = ACTIONS(916), + [anon_sym__Nonnull] = ACTIONS(916), + [anon_sym_alignas] = ACTIONS(919), + [anon_sym__Alignas] = ACTIONS(919), + [aux_sym_primitive_type_token1] = ACTIONS(922), + [anon_sym__BitInt] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(1045), + [anon_sym_case] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1051), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_break] = ACTIONS(1060), + [anon_sym_continue] = ACTIONS(1063), + [anon_sym_goto] = ACTIONS(1066), + [anon_sym___try] = ACTIONS(1069), + [anon_sym___leave] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(973), + [anon_sym___alignof__] = ACTIONS(976), + [anon_sym___alignof] = ACTIONS(976), + [anon_sym__alignof] = ACTIONS(976), + [anon_sym_alignof] = ACTIONS(976), + [anon_sym__Alignof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(979), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym__Static_assert] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_typeof_unqual] = ACTIONS(985), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(991), + [anon_sym___asm__] = ACTIONS(991), + [anon_sym___asm] = ACTIONS(991), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(997), + [anon_sym_u_SQUOTE] = ACTIONS(997), + [anon_sym_U_SQUOTE] = ACTIONS(997), + [anon_sym_u8_SQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_L_DQUOTE] = ACTIONS(1000), + [anon_sym_u_DQUOTE] = ACTIONS(1000), + [anon_sym_U_DQUOTE] = ACTIONS(1000), + [anon_sym_u8_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [anon_sym_NULL] = ACTIONS(1006), + [anon_sym_nullptr] = ACTIONS(1006), + [sym_comment] = ACTIONS(3), + }, + [STATE(55)] = { [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1140), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(55), [sym_labeled_statement] = STATE(55), [sym_expression_statement] = STATE(55), @@ -20900,318 +22746,692 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(55), [sym_seh_try_statement] = STATE(55), [sym_seh_leave_statement] = STATE(55), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(925), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [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(923), - [anon_sym_switch] = ACTIONS(384), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [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), + [ts_builtin_sym_end] = ACTIONS(1040), + [sym_identifier] = ACTIONS(1075), + [aux_sym_preproc_include_token1] = ACTIONS(872), + [aux_sym_preproc_def_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token2] = ACTIONS(872), + [aux_sym_preproc_embed_token1] = ACTIONS(872), + [aux_sym_preproc_if_token1] = ACTIONS(872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(872), + [sym_preproc_directive] = ACTIONS(872), + [anon_sym_LPAREN2] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym___extension__] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(895), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym___attribute] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(901), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(872), + [anon_sym___clrcall] = ACTIONS(872), + [anon_sym___stdcall] = ACTIONS(872), + [anon_sym___fastcall] = ACTIONS(872), + [anon_sym___thiscall] = ACTIONS(872), + [anon_sym___vectorcall] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_static] = ACTIONS(895), + [anon_sym_auto] = ACTIONS(913), + [anon_sym_register] = ACTIONS(895), + [anon_sym_inline] = ACTIONS(895), + [anon_sym___inline] = ACTIONS(895), + [anon_sym___inline__] = ACTIONS(895), + [anon_sym___forceinline] = ACTIONS(895), + [anon_sym_thread_local] = ACTIONS(895), + [anon_sym___thread] = ACTIONS(895), + [anon_sym_const] = ACTIONS(916), + [anon_sym_constexpr] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym___restrict__] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym__Noreturn] = ACTIONS(916), + [anon_sym_noreturn] = ACTIONS(916), + [anon_sym__Nonnull] = ACTIONS(916), + [anon_sym_alignas] = ACTIONS(919), + [anon_sym__Alignas] = ACTIONS(919), + [aux_sym_primitive_type_token1] = ACTIONS(922), + [anon_sym__BitInt] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_case] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_while] = ACTIONS(1096), + [anon_sym_do] = ACTIONS(1099), + [anon_sym_for] = ACTIONS(1102), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1111), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym___try] = ACTIONS(1117), + [anon_sym___leave] = ACTIONS(1120), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(973), + [anon_sym___alignof__] = ACTIONS(976), + [anon_sym___alignof] = ACTIONS(976), + [anon_sym__alignof] = ACTIONS(976), + [anon_sym_alignof] = ACTIONS(976), + [anon_sym__Alignof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(979), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym__Static_assert] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_typeof_unqual] = ACTIONS(985), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(991), + [anon_sym___asm__] = ACTIONS(991), + [anon_sym___asm] = ACTIONS(991), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(997), + [anon_sym_u_SQUOTE] = ACTIONS(997), + [anon_sym_U_SQUOTE] = ACTIONS(997), + [anon_sym_u8_SQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_L_DQUOTE] = ACTIONS(1000), + [anon_sym_u_DQUOTE] = ACTIONS(1000), + [anon_sym_U_DQUOTE] = ACTIONS(1000), + [anon_sym_u8_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [anon_sym_NULL] = ACTIONS(1006), + [anon_sym_nullptr] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, - [STATE(53)] = { - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1140), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_seh_try_statement] = STATE(50), - [sym_seh_leave_statement] = STATE(50), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(50), - [sym_identifier] = ACTIONS(925), - [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), - [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(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(929), - [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(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___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(56)] = { + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1175), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym_seh_try_statement] = STATE(54), + [sym_seh_leave_statement] = STATE(54), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(1019), + [aux_sym_preproc_include_token1] = ACTIONS(865), + [aux_sym_preproc_def_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token2] = ACTIONS(865), + [aux_sym_preproc_embed_token1] = ACTIONS(865), + [aux_sym_preproc_if_token1] = ACTIONS(865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(865), + [sym_preproc_directive] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(410), + [anon_sym_typedef] = ACTIONS(412), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(865), + [anon_sym___clrcall] = ACTIONS(865), + [anon_sym___stdcall] = ACTIONS(865), + [anon_sym___fastcall] = ACTIONS(865), + [anon_sym___thiscall] = ACTIONS(865), + [anon_sym___vectorcall] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_else] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(54)] = { + [STATE(57)] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(863), + [aux_sym_preproc_def_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token2] = ACTIONS(863), + [aux_sym_preproc_embed_token1] = ACTIONS(863), + [aux_sym_preproc_if_token1] = ACTIONS(863), + [aux_sym_preproc_if_token2] = ACTIONS(863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(863), + [sym_preproc_directive] = ACTIONS(863), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(863), + [anon_sym___clrcall] = ACTIONS(863), + [anon_sym___stdcall] = ACTIONS(863), + [anon_sym___fastcall] = ACTIONS(863), + [anon_sym___thiscall] = ACTIONS(863), + [anon_sym___vectorcall] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(58)] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(861), + [aux_sym_preproc_def_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token2] = ACTIONS(861), + [aux_sym_preproc_embed_token1] = ACTIONS(861), + [aux_sym_preproc_if_token1] = ACTIONS(861), + [aux_sym_preproc_if_token2] = ACTIONS(861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(861), + [sym_preproc_directive] = ACTIONS(861), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(861), + [anon_sym___clrcall] = ACTIONS(861), + [anon_sym___stdcall] = ACTIONS(861), + [anon_sym___fastcall] = ACTIONS(861), + [anon_sym___thiscall] = ACTIONS(861), + [anon_sym___vectorcall] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(59)] = { [sym_declaration] = STATE(61), [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(61), [sym_labeled_statement] = STATE(61), [sym_expression_statement] = STATE(61), @@ -21226,1459 +23446,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(61), [sym_seh_try_statement] = STATE(61), [sym_seh_leave_statement] = STATE(61), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [aux_sym_case_statement_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(941), - [sym_identifier] = ACTIONS(931), - [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(933), - [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___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_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(61), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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), - }, - [STATE(55)] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1140), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(943), - [aux_sym_preproc_include_token1] = ACTIONS(798), - [aux_sym_preproc_def_token1] = ACTIONS(798), - [aux_sym_preproc_if_token1] = ACTIONS(798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(798), - [sym_preproc_directive] = ACTIONS(798), - [anon_sym_LPAREN2] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym___extension__] = ACTIONS(949), - [anon_sym_typedef] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(821), - [anon_sym___attribute__] = ACTIONS(824), - [anon_sym___attribute] = ACTIONS(824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(827), - [anon_sym___declspec] = ACTIONS(830), - [anon_sym___cdecl] = ACTIONS(798), - [anon_sym___clrcall] = ACTIONS(798), - [anon_sym___stdcall] = ACTIONS(798), - [anon_sym___fastcall] = ACTIONS(798), - [anon_sym___thiscall] = ACTIONS(798), - [anon_sym___vectorcall] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_signed] = ACTIONS(836), - [anon_sym_unsigned] = ACTIONS(836), - [anon_sym_long] = ACTIONS(836), - [anon_sym_short] = ACTIONS(836), - [anon_sym_static] = ACTIONS(821), - [anon_sym_auto] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_inline] = ACTIONS(821), - [anon_sym___inline] = ACTIONS(821), - [anon_sym___inline__] = ACTIONS(821), - [anon_sym___forceinline] = ACTIONS(821), - [anon_sym_thread_local] = ACTIONS(821), - [anon_sym___thread] = ACTIONS(821), - [anon_sym_const] = ACTIONS(839), - [anon_sym_constexpr] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_restrict] = ACTIONS(839), - [anon_sym___restrict__] = ACTIONS(839), - [anon_sym__Atomic] = ACTIONS(839), - [anon_sym__Noreturn] = ACTIONS(839), - [anon_sym_noreturn] = ACTIONS(839), - [anon_sym__Nonnull] = ACTIONS(839), - [anon_sym_alignas] = ACTIONS(842), - [anon_sym__Alignas] = ACTIONS(842), - [sym_primitive_type] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(848), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_union] = ACTIONS(854), - [anon_sym_if] = ACTIONS(960), - [anon_sym_else] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(963), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [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(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_sizeof] = ACTIONS(893), - [anon_sym___alignof__] = ACTIONS(896), - [anon_sym___alignof] = ACTIONS(896), - [anon_sym__alignof] = ACTIONS(896), - [anon_sym_alignof] = ACTIONS(896), - [anon_sym__Alignof] = ACTIONS(896), - [anon_sym_offsetof] = ACTIONS(899), - [anon_sym__Generic] = ACTIONS(902), - [anon_sym_asm] = ACTIONS(905), - [anon_sym___asm__] = ACTIONS(905), - [anon_sym___asm] = ACTIONS(905), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(911), - [anon_sym_u_SQUOTE] = ACTIONS(911), - [anon_sym_U_SQUOTE] = ACTIONS(911), - [anon_sym_u8_SQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [anon_sym_NULL] = ACTIONS(920), - [anon_sym_nullptr] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [STATE(56)] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(927), - [sym_identifier] = ACTIONS(931), - [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(933), - [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___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_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(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(935), - [anon_sym___leave] = ACTIONS(937), - [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), - }, - [STATE(57)] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(60), - [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), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym___extension__] = ACTIONS(424), - [anon_sym_typedef] = ACTIONS(426), - [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(430), - [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(432), - [anon_sym_else] = ACTIONS(793), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(793), - [anon_sym_default] = ACTIONS(793), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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), - }, - [STATE(58)] = { - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(59), - [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(422), - [anon_sym___extension__] = ACTIONS(424), - [anon_sym_typedef] = ACTIONS(426), - [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(430), - [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(432), - [anon_sym_else] = ACTIONS(789), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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), - }, - [STATE(59)] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(62), - [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), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym___extension__] = ACTIONS(424), - [anon_sym_typedef] = ACTIONS(426), - [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(430), - [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(432), - [anon_sym_else] = ACTIONS(791), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(791), - [anon_sym_default] = ACTIONS(791), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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(1125), + [aux_sym_preproc_include_token1] = ACTIONS(865), + [aux_sym_preproc_def_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token2] = ACTIONS(865), + [aux_sym_preproc_embed_token1] = ACTIONS(865), + [aux_sym_preproc_if_token1] = ACTIONS(865), + [aux_sym_preproc_if_token2] = ACTIONS(865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(865), + [sym_preproc_directive] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(865), + [anon_sym___clrcall] = ACTIONS(865), + [anon_sym___stdcall] = ACTIONS(865), + [anon_sym___fastcall] = ACTIONS(865), + [anon_sym___thiscall] = ACTIONS(865), + [anon_sym___vectorcall] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(60)] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(993), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_if_token2] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(424), - [anon_sym_typedef] = ACTIONS(426), - [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(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(430), - [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(432), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1125), + [aux_sym_preproc_include_token1] = ACTIONS(867), + [aux_sym_preproc_def_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token1] = ACTIONS(867), + [aux_sym_preproc_errwarn_token2] = ACTIONS(867), + [aux_sym_preproc_embed_token1] = ACTIONS(867), + [aux_sym_preproc_if_token1] = ACTIONS(867), + [aux_sym_preproc_if_token2] = ACTIONS(867), + [aux_sym_preproc_ifdef_token1] = ACTIONS(867), + [aux_sym_preproc_ifdef_token2] = ACTIONS(867), + [sym_preproc_directive] = ACTIONS(867), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(548), + [anon_sym_typedef] = ACTIONS(550), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(867), + [anon_sym___clrcall] = ACTIONS(867), + [anon_sym___stdcall] = ACTIONS(867), + [anon_sym___fastcall] = ACTIONS(867), + [anon_sym___thiscall] = ACTIONS(867), + [anon_sym___vectorcall] = ACTIONS(867), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_else] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(61)] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(939), - [sym_identifier] = ACTIONS(931), - [aux_sym_preproc_include_token1] = ACTIONS(923), - [aux_sym_preproc_def_token1] = ACTIONS(923), - [aux_sym_preproc_if_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token1] = ACTIONS(923), - [aux_sym_preproc_ifdef_token2] = ACTIONS(923), - [sym_preproc_directive] = ACTIONS(923), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), - [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___cdecl] = ACTIONS(923), - [anon_sym___clrcall] = ACTIONS(923), - [anon_sym___stdcall] = ACTIONS(923), - [anon_sym___fastcall] = ACTIONS(923), - [anon_sym___thiscall] = ACTIONS(923), - [anon_sym___vectorcall] = ACTIONS(923), - [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(61), - [anon_sym_else] = ACTIONS(923), - [anon_sym_switch] = ACTIONS(63), - [anon_sym_case] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(1127), + [aux_sym_preproc_include_token1] = ACTIONS(872), + [aux_sym_preproc_def_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token1] = ACTIONS(872), + [aux_sym_preproc_errwarn_token2] = ACTIONS(872), + [aux_sym_preproc_embed_token1] = ACTIONS(872), + [aux_sym_preproc_if_token1] = ACTIONS(872), + [aux_sym_preproc_if_token2] = ACTIONS(872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(872), + [sym_preproc_directive] = ACTIONS(872), + [anon_sym_LPAREN2] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(1130), + [anon_sym___extension__] = ACTIONS(1133), + [anon_sym_typedef] = ACTIONS(1136), + [anon_sym_extern] = ACTIONS(895), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym___attribute] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(901), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym___cdecl] = ACTIONS(872), + [anon_sym___clrcall] = ACTIONS(872), + [anon_sym___stdcall] = ACTIONS(872), + [anon_sym___fastcall] = ACTIONS(872), + [anon_sym___thiscall] = ACTIONS(872), + [anon_sym___vectorcall] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(1139), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_static] = ACTIONS(895), + [anon_sym_auto] = ACTIONS(913), + [anon_sym_register] = ACTIONS(895), + [anon_sym_inline] = ACTIONS(895), + [anon_sym___inline] = ACTIONS(895), + [anon_sym___inline__] = ACTIONS(895), + [anon_sym___forceinline] = ACTIONS(895), + [anon_sym_thread_local] = ACTIONS(895), + [anon_sym___thread] = ACTIONS(895), + [anon_sym_const] = ACTIONS(916), + [anon_sym_constexpr] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym___restrict__] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym__Noreturn] = ACTIONS(916), + [anon_sym_noreturn] = ACTIONS(916), + [anon_sym__Nonnull] = ACTIONS(916), + [anon_sym_alignas] = ACTIONS(919), + [anon_sym__Alignas] = ACTIONS(919), + [aux_sym_primitive_type_token1] = ACTIONS(922), + [anon_sym__BitInt] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(1142), + [anon_sym_else] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(1145), + [anon_sym_case] = ACTIONS(872), + [anon_sym_default] = ACTIONS(872), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1154), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1160), + [anon_sym_continue] = ACTIONS(1163), + [anon_sym_goto] = ACTIONS(1166), + [anon_sym___try] = ACTIONS(1169), + [anon_sym___leave] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(973), + [anon_sym___alignof__] = ACTIONS(976), + [anon_sym___alignof] = ACTIONS(976), + [anon_sym__alignof] = ACTIONS(976), + [anon_sym_alignof] = ACTIONS(976), + [anon_sym__Alignof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(979), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym__Static_assert] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_typeof_unqual] = ACTIONS(985), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(991), + [anon_sym___asm__] = ACTIONS(991), + [anon_sym___asm] = ACTIONS(991), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(997), + [anon_sym_u_SQUOTE] = ACTIONS(997), + [anon_sym_U_SQUOTE] = ACTIONS(997), + [anon_sym_u8_SQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_L_DQUOTE] = ACTIONS(1000), + [anon_sym_u_DQUOTE] = ACTIONS(1000), + [anon_sym_U_DQUOTE] = ACTIONS(1000), + [anon_sym_u8_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [anon_sym_NULL] = ACTIONS(1006), + [anon_sym_nullptr] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, [STATE(62)] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(995), - [aux_sym_preproc_include_token1] = ACTIONS(798), - [aux_sym_preproc_def_token1] = ACTIONS(798), - [aux_sym_preproc_if_token1] = ACTIONS(798), - [aux_sym_preproc_if_token2] = ACTIONS(798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(798), - [sym_preproc_directive] = ACTIONS(798), - [anon_sym_LPAREN2] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym___extension__] = ACTIONS(1001), - [anon_sym_typedef] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(821), - [anon_sym___attribute__] = ACTIONS(824), - [anon_sym___attribute] = ACTIONS(824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(827), - [anon_sym___declspec] = ACTIONS(830), - [anon_sym___cdecl] = ACTIONS(798), - [anon_sym___clrcall] = ACTIONS(798), - [anon_sym___stdcall] = ACTIONS(798), - [anon_sym___fastcall] = ACTIONS(798), - [anon_sym___thiscall] = ACTIONS(798), - [anon_sym___vectorcall] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_signed] = ACTIONS(836), - [anon_sym_unsigned] = ACTIONS(836), - [anon_sym_long] = ACTIONS(836), - [anon_sym_short] = ACTIONS(836), - [anon_sym_static] = ACTIONS(821), - [anon_sym_auto] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_inline] = ACTIONS(821), - [anon_sym___inline] = ACTIONS(821), - [anon_sym___inline__] = ACTIONS(821), - [anon_sym___forceinline] = ACTIONS(821), - [anon_sym_thread_local] = ACTIONS(821), - [anon_sym___thread] = ACTIONS(821), - [anon_sym_const] = ACTIONS(839), - [anon_sym_constexpr] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_restrict] = ACTIONS(839), - [anon_sym___restrict__] = ACTIONS(839), - [anon_sym__Atomic] = ACTIONS(839), - [anon_sym__Noreturn] = ACTIONS(839), - [anon_sym_noreturn] = ACTIONS(839), - [anon_sym__Nonnull] = ACTIONS(839), - [anon_sym_alignas] = ACTIONS(842), - [anon_sym__Alignas] = ACTIONS(842), - [sym_primitive_type] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(848), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_union] = ACTIONS(854), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_else] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(1013), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [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(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_sizeof] = ACTIONS(893), - [anon_sym___alignof__] = ACTIONS(896), - [anon_sym___alignof] = ACTIONS(896), - [anon_sym__alignof] = ACTIONS(896), - [anon_sym_alignof] = ACTIONS(896), - [anon_sym__Alignof] = ACTIONS(896), - [anon_sym_offsetof] = ACTIONS(899), - [anon_sym__Generic] = ACTIONS(902), - [anon_sym_asm] = ACTIONS(905), - [anon_sym___asm__] = ACTIONS(905), - [anon_sym___asm] = ACTIONS(905), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(911), - [anon_sym_u_SQUOTE] = ACTIONS(911), - [anon_sym_U_SQUOTE] = ACTIONS(911), - [anon_sym_u8_SQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [anon_sym_NULL] = ACTIONS(920), - [anon_sym_nullptr] = ACTIONS(920), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(50), + [ts_builtin_sym_end] = ACTIONS(1021), + [sym_identifier] = ACTIONS(1011), + [aux_sym_preproc_include_token1] = ACTIONS(861), + [aux_sym_preproc_def_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token1] = ACTIONS(861), + [aux_sym_preproc_errwarn_token2] = ACTIONS(861), + [aux_sym_preproc_embed_token1] = ACTIONS(861), + [aux_sym_preproc_if_token1] = ACTIONS(861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(861), + [sym_preproc_directive] = ACTIONS(861), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(861), + [anon_sym___clrcall] = ACTIONS(861), + [anon_sym___stdcall] = ACTIONS(861), + [anon_sym___fastcall] = ACTIONS(861), + [anon_sym___thiscall] = ACTIONS(861), + [anon_sym___vectorcall] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(861), + [anon_sym_default] = ACTIONS(861), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(63)] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(1123), + [sym_identifier] = ACTIONS(1011), + [aux_sym_preproc_include_token1] = ACTIONS(865), + [aux_sym_preproc_def_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token1] = ACTIONS(865), + [aux_sym_preproc_errwarn_token2] = ACTIONS(865), + [aux_sym_preproc_embed_token1] = ACTIONS(865), + [aux_sym_preproc_if_token1] = ACTIONS(865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(865), + [sym_preproc_directive] = ACTIONS(865), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(865), + [anon_sym___clrcall] = ACTIONS(865), + [anon_sym___stdcall] = ACTIONS(865), + [anon_sym___fastcall] = ACTIONS(865), + [anon_sym___thiscall] = ACTIONS(865), + [anon_sym___vectorcall] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(64)] = { [sym_declaration] = STATE(63), [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(63), [sym_labeled_statement] = STATE(63), [sym_expression_statement] = STATE(63), @@ -22693,1206 +24321,1109 @@ 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(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [aux_sym_case_statement_repeat1] = STATE(63), - [ts_builtin_sym_end] = ACTIONS(958), - [sym_identifier] = ACTIONS(1043), - [aux_sym_preproc_include_token1] = ACTIONS(798), - [aux_sym_preproc_def_token1] = ACTIONS(798), - [aux_sym_preproc_if_token1] = ACTIONS(798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(798), - [sym_preproc_directive] = ACTIONS(798), - [anon_sym_LPAREN2] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym___extension__] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(821), - [anon_sym___attribute__] = ACTIONS(824), - [anon_sym___attribute] = ACTIONS(824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(827), - [anon_sym___declspec] = ACTIONS(830), - [anon_sym___cdecl] = ACTIONS(798), - [anon_sym___clrcall] = ACTIONS(798), - [anon_sym___stdcall] = ACTIONS(798), - [anon_sym___fastcall] = ACTIONS(798), - [anon_sym___thiscall] = ACTIONS(798), - [anon_sym___vectorcall] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_signed] = ACTIONS(836), - [anon_sym_unsigned] = ACTIONS(836), - [anon_sym_long] = ACTIONS(836), - [anon_sym_short] = ACTIONS(836), - [anon_sym_static] = ACTIONS(821), - [anon_sym_auto] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_inline] = ACTIONS(821), - [anon_sym___inline] = ACTIONS(821), - [anon_sym___inline__] = ACTIONS(821), - [anon_sym___forceinline] = ACTIONS(821), - [anon_sym_thread_local] = ACTIONS(821), - [anon_sym___thread] = ACTIONS(821), - [anon_sym_const] = ACTIONS(839), - [anon_sym_constexpr] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_restrict] = ACTIONS(839), - [anon_sym___restrict__] = ACTIONS(839), - [anon_sym__Atomic] = ACTIONS(839), - [anon_sym__Noreturn] = ACTIONS(839), - [anon_sym_noreturn] = ACTIONS(839), - [anon_sym__Nonnull] = ACTIONS(839), - [anon_sym_alignas] = ACTIONS(842), - [anon_sym__Alignas] = ACTIONS(842), - [sym_primitive_type] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(848), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_union] = ACTIONS(854), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(1061), - [anon_sym_case] = ACTIONS(798), - [anon_sym_default] = ACTIONS(798), - [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(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_sizeof] = ACTIONS(893), - [anon_sym___alignof__] = ACTIONS(896), - [anon_sym___alignof] = ACTIONS(896), - [anon_sym__alignof] = ACTIONS(896), - [anon_sym_alignof] = ACTIONS(896), - [anon_sym__Alignof] = ACTIONS(896), - [anon_sym_offsetof] = ACTIONS(899), - [anon_sym__Generic] = ACTIONS(902), - [anon_sym_asm] = ACTIONS(905), - [anon_sym___asm__] = ACTIONS(905), - [anon_sym___asm] = ACTIONS(905), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(911), - [anon_sym_u_SQUOTE] = ACTIONS(911), - [anon_sym_U_SQUOTE] = ACTIONS(911), - [anon_sym_u8_SQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [anon_sym_NULL] = ACTIONS(920), - [anon_sym_nullptr] = ACTIONS(920), - [sym_comment] = ACTIONS(3), - }, - [STATE(64)] = { - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1140), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [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(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(52), - [sym_identifier] = ACTIONS(925), - [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(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_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), - [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), + [ts_builtin_sym_end] = ACTIONS(1023), + [sym_identifier] = ACTIONS(1011), + [aux_sym_preproc_include_token1] = ACTIONS(863), + [aux_sym_preproc_def_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token1] = ACTIONS(863), + [aux_sym_preproc_errwarn_token2] = ACTIONS(863), + [aux_sym_preproc_embed_token1] = ACTIONS(863), + [aux_sym_preproc_if_token1] = ACTIONS(863), + [aux_sym_preproc_ifdef_token1] = ACTIONS(863), + [aux_sym_preproc_ifdef_token2] = ACTIONS(863), + [sym_preproc_directive] = ACTIONS(863), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(863), + [anon_sym___clrcall] = ACTIONS(863), + [anon_sym___stdcall] = ACTIONS(863), + [anon_sym___fastcall] = ACTIONS(863), + [anon_sym___thiscall] = ACTIONS(863), + [anon_sym___vectorcall] = ACTIONS(863), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_else] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(65)] = { - [sym_declaration] = STATE(190), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(154), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(931), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), - [anon_sym___extension__] = ACTIONS(1091), - [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(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(935), - [anon_sym___leave] = ACTIONS(937), - [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_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(1175), + [anon_sym_LPAREN2] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_TILDE] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym___extension__] = ACTIONS(1081), + [anon_sym_typedef] = ACTIONS(1084), + [anon_sym_extern] = ACTIONS(895), + [anon_sym___attribute__] = ACTIONS(898), + [anon_sym___attribute] = ACTIONS(898), + [anon_sym_LBRACK_LBRACK] = ACTIONS(901), + [anon_sym___declspec] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_signed] = ACTIONS(910), + [anon_sym_unsigned] = ACTIONS(910), + [anon_sym_long] = ACTIONS(910), + [anon_sym_short] = ACTIONS(910), + [anon_sym_static] = ACTIONS(895), + [anon_sym_auto] = ACTIONS(913), + [anon_sym_register] = ACTIONS(895), + [anon_sym_inline] = ACTIONS(895), + [anon_sym___inline] = ACTIONS(895), + [anon_sym___inline__] = ACTIONS(895), + [anon_sym___forceinline] = ACTIONS(895), + [anon_sym_thread_local] = ACTIONS(895), + [anon_sym___thread] = ACTIONS(895), + [anon_sym_const] = ACTIONS(916), + [anon_sym_constexpr] = ACTIONS(916), + [anon_sym_volatile] = ACTIONS(916), + [anon_sym_restrict] = ACTIONS(916), + [anon_sym___restrict__] = ACTIONS(916), + [anon_sym__Atomic] = ACTIONS(916), + [anon_sym__Noreturn] = ACTIONS(916), + [anon_sym_noreturn] = ACTIONS(916), + [anon_sym__Nonnull] = ACTIONS(916), + [anon_sym_alignas] = ACTIONS(919), + [anon_sym__Alignas] = ACTIONS(919), + [aux_sym_primitive_type_token1] = ACTIONS(922), + [anon_sym__BitInt] = ACTIONS(925), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_union] = ACTIONS(934), + [anon_sym_if] = ACTIONS(1178), + [anon_sym_else] = ACTIONS(872), + [anon_sym_switch] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1181), + [anon_sym_do] = ACTIONS(1099), + [anon_sym_for] = ACTIONS(1184), + [anon_sym_return] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_continue] = ACTIONS(1111), + [anon_sym_goto] = ACTIONS(1114), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1072), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_sizeof] = ACTIONS(973), + [anon_sym___alignof__] = ACTIONS(976), + [anon_sym___alignof] = ACTIONS(976), + [anon_sym__alignof] = ACTIONS(976), + [anon_sym_alignof] = ACTIONS(976), + [anon_sym__Alignof] = ACTIONS(976), + [anon_sym_offsetof] = ACTIONS(979), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym__Static_assert] = ACTIONS(982), + [anon_sym_typeof] = ACTIONS(985), + [anon_sym_typeof_unqual] = ACTIONS(985), + [anon_sym__Generic] = ACTIONS(988), + [anon_sym_asm] = ACTIONS(991), + [anon_sym___asm__] = ACTIONS(991), + [anon_sym___asm] = ACTIONS(991), + [sym_number_literal] = ACTIONS(994), + [anon_sym_L_SQUOTE] = ACTIONS(997), + [anon_sym_u_SQUOTE] = ACTIONS(997), + [anon_sym_U_SQUOTE] = ACTIONS(997), + [anon_sym_u8_SQUOTE] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_L_DQUOTE] = ACTIONS(1000), + [anon_sym_u_DQUOTE] = ACTIONS(1000), + [anon_sym_U_DQUOTE] = ACTIONS(1000), + [anon_sym_u8_DQUOTE] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_true] = ACTIONS(1003), + [sym_false] = ACTIONS(1003), + [anon_sym_NULL] = ACTIONS(1006), + [anon_sym_nullptr] = ACTIONS(1006), [sym_comment] = ACTIONS(3), }, [STATE(66)] = { - [sym_declaration] = STATE(219), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1140), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(219), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(925), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1091), - [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(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_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___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_declaration] = STATE(206), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1175), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(206), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1019), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(67)] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(74), - [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_declaration] = STATE(107), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1169), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(107), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(859), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(68)] = { - [sym_declaration] = STATE(99), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1142), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(99), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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_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___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_declaration] = STATE(210), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1170), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(195), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(210), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1125), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(69)] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(67), - [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(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___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_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1192), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(863), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(70)] = { - [sym_declaration] = STATE(190), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(244), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(190), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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(1091), - [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_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_declaration] = STATE(243), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(159), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(243), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1192), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(71)] = { [sym_declaration] = STATE(73), [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym_attributed_statement] = STATE(73), [sym_labeled_statement] = STATE(73), [sym_expression_statement] = STATE(73), @@ -23907,3939 +25438,1354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(73), [sym_seh_try_statement] = STATE(73), [sym_seh_leave_statement] = STATE(73), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [aux_sym_case_statement_repeat1] = STATE(73), - [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(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___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(1192), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(861), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(72)] = { - [sym_declaration] = STATE(194), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1147), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(178), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(194), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym___extension__] = ACTIONS(1091), - [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(430), - [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(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(1192), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(73)] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(74), - [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(923), - [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_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [aux_sym_case_statement_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(1192), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_else] = ACTIONS(867), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(74)] = { - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1155), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(399), - [sym_ms_declspec_modifier] = STATE(695), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym_seh_try_statement] = STATE(74), - [sym_seh_leave_statement] = STATE(74), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1107), - [anon_sym_LPAREN2] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(803), - [anon_sym_TILDE] = ACTIONS(803), - [anon_sym_DASH] = ACTIONS(806), - [anon_sym_PLUS] = ACTIONS(806), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym___extension__] = ACTIONS(1049), - [anon_sym_typedef] = ACTIONS(1052), - [anon_sym_extern] = ACTIONS(821), - [anon_sym___attribute__] = ACTIONS(824), - [anon_sym___attribute] = ACTIONS(824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(827), - [anon_sym___declspec] = ACTIONS(830), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_signed] = ACTIONS(836), - [anon_sym_unsigned] = ACTIONS(836), - [anon_sym_long] = ACTIONS(836), - [anon_sym_short] = ACTIONS(836), - [anon_sym_static] = ACTIONS(821), - [anon_sym_auto] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_inline] = ACTIONS(821), - [anon_sym___inline] = ACTIONS(821), - [anon_sym___inline__] = ACTIONS(821), - [anon_sym___forceinline] = ACTIONS(821), - [anon_sym_thread_local] = ACTIONS(821), - [anon_sym___thread] = ACTIONS(821), - [anon_sym_const] = ACTIONS(839), - [anon_sym_constexpr] = ACTIONS(839), - [anon_sym_volatile] = ACTIONS(839), - [anon_sym_restrict] = ACTIONS(839), - [anon_sym___restrict__] = ACTIONS(839), - [anon_sym__Atomic] = ACTIONS(839), - [anon_sym__Noreturn] = ACTIONS(839), - [anon_sym_noreturn] = ACTIONS(839), - [anon_sym__Nonnull] = ACTIONS(839), - [anon_sym_alignas] = ACTIONS(842), - [anon_sym__Alignas] = ACTIONS(842), - [sym_primitive_type] = ACTIONS(845), - [anon_sym_enum] = ACTIONS(848), - [anon_sym_struct] = ACTIONS(851), - [anon_sym_union] = ACTIONS(854), - [anon_sym_if] = ACTIONS(1110), - [anon_sym_else] = ACTIONS(798), - [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(890), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_sizeof] = ACTIONS(893), - [anon_sym___alignof__] = ACTIONS(896), - [anon_sym___alignof] = ACTIONS(896), - [anon_sym__alignof] = ACTIONS(896), - [anon_sym_alignof] = ACTIONS(896), - [anon_sym__Alignof] = ACTIONS(896), - [anon_sym_offsetof] = ACTIONS(899), - [anon_sym__Generic] = ACTIONS(902), - [anon_sym_asm] = ACTIONS(905), - [anon_sym___asm__] = ACTIONS(905), - [anon_sym___asm] = ACTIONS(905), - [sym_number_literal] = ACTIONS(908), - [anon_sym_L_SQUOTE] = ACTIONS(911), - [anon_sym_u_SQUOTE] = ACTIONS(911), - [anon_sym_U_SQUOTE] = ACTIONS(911), - [anon_sym_u8_SQUOTE] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym_L_DQUOTE] = ACTIONS(914), - [anon_sym_u_DQUOTE] = ACTIONS(914), - [anon_sym_U_DQUOTE] = ACTIONS(914), - [anon_sym_u8_DQUOTE] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(914), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [anon_sym_NULL] = ACTIONS(920), - [anon_sym_nullptr] = ACTIONS(920), + [sym_declaration] = STATE(243), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1181), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(412), + [sym_ms_declspec_modifier] = STATE(688), + [sym_compound_statement] = STATE(167), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(243), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1011), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(75)] = { - [sym_declaration] = STATE(455), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1151), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__for_statement_body] = STATE(1934), - [sym_expression] = STATE(1042), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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), - [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_declaration] = STATE(468), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1180), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__for_statement_body] = STATE(1998), + [sym_expression] = STATE(1051), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2003), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(76)] = { - [sym_declaration] = STATE(455), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1151), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__for_statement_body] = STATE(1861), - [sym_expression] = STATE(1042), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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), - [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_declaration] = STATE(468), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1180), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__for_statement_body] = STATE(1985), + [sym_expression] = STATE(1051), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2003), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(77)] = { - [sym_declaration] = STATE(455), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1151), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__for_statement_body] = STATE(1926), - [sym_expression] = STATE(1042), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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), - [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_declaration] = STATE(468), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1180), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__for_statement_body] = STATE(1891), + [sym_expression] = STATE(1051), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2003), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1208), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(78)] = { - [sym_declaration] = STATE(455), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1151), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__for_statement_body] = STATE(1922), - [sym_expression] = STATE(1042), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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), - [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), - }, - [STATE(79)] = { - [sym_declaration] = STATE(455), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1151), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__for_statement_body] = STATE(1998), - [sym_expression] = STATE(1042), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1800), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [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), - [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___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), - [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), - }, - [STATE(80)] = { - [sym_else_clause] = STATE(107), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(87)] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_identifier] = ACTIONS(1138), - [aux_sym_preproc_include_token1] = ACTIONS(1138), - [aux_sym_preproc_def_token1] = ACTIONS(1138), - [anon_sym_COMMA] = ACTIONS(1140), - [anon_sym_RPAREN] = ACTIONS(1140), - [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___except] = ACTIONS(1138), - [anon_sym___finally] = 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), - }, - [STATE(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), - }, - [STATE(89)] = { - [ts_builtin_sym_end] = ACTIONS(1160), - [sym_identifier] = ACTIONS(1158), - [aux_sym_preproc_include_token1] = ACTIONS(1158), - [aux_sym_preproc_def_token1] = ACTIONS(1158), - [anon_sym_COMMA] = ACTIONS(1160), - [anon_sym_RPAREN] = ACTIONS(1160), - [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___except] = ACTIONS(1158), - [anon_sym___finally] = 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), - }, - [STATE(90)] = { - [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), - }, - [STATE(91)] = { - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(94)] = { - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [sym_declaration] = STATE(468), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1180), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__for_statement_body] = STATE(1971), + [sym_expression] = STATE(1051), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2003), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1206), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1208), [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), - }, - [STATE(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), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(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), - [sym_comment] = ACTIONS(3), - }, - [STATE(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), - }, - [STATE(102)] = { + [STATE(79)] = { + [sym_declaration] = STATE(468), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1180), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__for_statement_body] = STATE(1919), + [sym_expression] = STATE(1051), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2003), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), [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_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), [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), - }, - [STATE(103)] = { - [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), - }, - [STATE(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), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(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), + [STATE(80)] = { + [sym_else_clause] = STATE(112), + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1212), + [aux_sym_preproc_embed_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token2] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [aux_sym_preproc_else_token1] = ACTIONS(1212), + [aux_sym_preproc_elif_token1] = ACTIONS(1212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym___extension__] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym___attribute] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym___inline] = ACTIONS(1212), + [anon_sym___inline__] = ACTIONS(1212), + [anon_sym___forceinline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym___thread] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [anon_sym__Nonnull] = ACTIONS(1212), + [anon_sym_alignas] = ACTIONS(1212), + [anon_sym__Alignas] = ACTIONS(1212), + [aux_sym_primitive_type_token1] = ACTIONS(1212), + [anon_sym__BitInt] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1216), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym___try] = ACTIONS(1212), + [anon_sym___leave] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym___alignof__] = ACTIONS(1212), + [anon_sym___alignof] = ACTIONS(1212), + [anon_sym__alignof] = ACTIONS(1212), + [anon_sym_alignof] = ACTIONS(1212), + [anon_sym__Alignof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym_static_assert] = ACTIONS(1212), + [anon_sym__Static_assert] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_typeof_unqual] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [anon_sym___asm] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, - [STATE(106)] = { + [STATE(81)] = { [sym_identifier] = ACTIONS(1218), [aux_sym_preproc_include_token1] = ACTIONS(1218), [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1218), + [aux_sym_preproc_embed_token1] = ACTIONS(1218), [aux_sym_preproc_if_token1] = ACTIONS(1218), [aux_sym_preproc_if_token2] = ACTIONS(1218), [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), @@ -27895,7 +26841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1218), [anon_sym_alignas] = ACTIONS(1218), [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), + [aux_sym_primitive_type_token1] = ACTIONS(1218), + [anon_sym__BitInt] = ACTIONS(1218), [anon_sym_enum] = ACTIONS(1218), [anon_sym_struct] = ACTIONS(1218), [anon_sym_union] = ACTIONS(1218), @@ -27922,6 +26869,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1218), [anon_sym__Alignof] = ACTIONS(1218), [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym_static_assert] = ACTIONS(1218), + [anon_sym__Static_assert] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1218), + [anon_sym_typeof_unqual] = ACTIONS(1218), [anon_sym__Generic] = ACTIONS(1218), [anon_sym_asm] = ACTIONS(1218), [anon_sym___asm__] = ACTIONS(1218), @@ -27943,10 +26894,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, - [STATE(107)] = { + [STATE(82)] = { [sym_identifier] = ACTIONS(1222), [aux_sym_preproc_include_token1] = ACTIONS(1222), [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_token1] = ACTIONS(1222), [aux_sym_preproc_if_token1] = ACTIONS(1222), [aux_sym_preproc_if_token2] = ACTIONS(1222), [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), @@ -28002,7 +26956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1222), [anon_sym_alignas] = ACTIONS(1222), [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = ACTIONS(1222), [anon_sym_enum] = ACTIONS(1222), [anon_sym_struct] = ACTIONS(1222), [anon_sym_union] = ACTIONS(1222), @@ -28029,6 +26984,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1222), [anon_sym__Alignof] = ACTIONS(1222), [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = ACTIONS(1222), [anon_sym__Generic] = ACTIONS(1222), [anon_sym_asm] = ACTIONS(1222), [anon_sym___asm__] = ACTIONS(1222), @@ -28050,10 +27009,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, - [STATE(108)] = { + [STATE(83)] = { [sym_identifier] = ACTIONS(1226), [aux_sym_preproc_include_token1] = ACTIONS(1226), [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1226), + [aux_sym_preproc_embed_token1] = ACTIONS(1226), [aux_sym_preproc_if_token1] = ACTIONS(1226), [aux_sym_preproc_if_token2] = ACTIONS(1226), [aux_sym_preproc_ifdef_token1] = ACTIONS(1226), @@ -28109,7 +27071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1226), [anon_sym_alignas] = ACTIONS(1226), [anon_sym__Alignas] = ACTIONS(1226), - [sym_primitive_type] = ACTIONS(1226), + [aux_sym_primitive_type_token1] = ACTIONS(1226), + [anon_sym__BitInt] = ACTIONS(1226), [anon_sym_enum] = ACTIONS(1226), [anon_sym_struct] = ACTIONS(1226), [anon_sym_union] = ACTIONS(1226), @@ -28136,6 +27099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1226), [anon_sym__Alignof] = ACTIONS(1226), [anon_sym_offsetof] = ACTIONS(1226), + [anon_sym_static_assert] = ACTIONS(1226), + [anon_sym__Static_assert] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_typeof_unqual] = ACTIONS(1226), [anon_sym__Generic] = ACTIONS(1226), [anon_sym_asm] = ACTIONS(1226), [anon_sym___asm__] = ACTIONS(1226), @@ -28157,10 +27124,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1226), [sym_comment] = ACTIONS(3), }, - [STATE(109)] = { + [STATE(84)] = { [sym_identifier] = ACTIONS(1230), [aux_sym_preproc_include_token1] = ACTIONS(1230), [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1230), + [aux_sym_preproc_embed_token1] = ACTIONS(1230), [aux_sym_preproc_if_token1] = ACTIONS(1230), [aux_sym_preproc_if_token2] = ACTIONS(1230), [aux_sym_preproc_ifdef_token1] = ACTIONS(1230), @@ -28216,7 +27186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1230), [anon_sym_alignas] = ACTIONS(1230), [anon_sym__Alignas] = ACTIONS(1230), - [sym_primitive_type] = ACTIONS(1230), + [aux_sym_primitive_type_token1] = ACTIONS(1230), + [anon_sym__BitInt] = ACTIONS(1230), [anon_sym_enum] = ACTIONS(1230), [anon_sym_struct] = ACTIONS(1230), [anon_sym_union] = ACTIONS(1230), @@ -28243,6 +27214,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1230), [anon_sym__Alignof] = ACTIONS(1230), [anon_sym_offsetof] = ACTIONS(1230), + [anon_sym_static_assert] = ACTIONS(1230), + [anon_sym__Static_assert] = ACTIONS(1230), + [anon_sym_typeof] = ACTIONS(1230), + [anon_sym_typeof_unqual] = ACTIONS(1230), [anon_sym__Generic] = ACTIONS(1230), [anon_sym_asm] = ACTIONS(1230), [anon_sym___asm__] = ACTIONS(1230), @@ -28264,10 +27239,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1230), [sym_comment] = ACTIONS(3), }, - [STATE(110)] = { + [STATE(85)] = { [sym_identifier] = ACTIONS(1234), [aux_sym_preproc_include_token1] = ACTIONS(1234), [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1234), + [aux_sym_preproc_embed_token1] = ACTIONS(1234), [aux_sym_preproc_if_token1] = ACTIONS(1234), [aux_sym_preproc_if_token2] = ACTIONS(1234), [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), @@ -28323,7 +27301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1234), [anon_sym_alignas] = ACTIONS(1234), [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), + [aux_sym_primitive_type_token1] = ACTIONS(1234), + [anon_sym__BitInt] = ACTIONS(1234), [anon_sym_enum] = ACTIONS(1234), [anon_sym_struct] = ACTIONS(1234), [anon_sym_union] = ACTIONS(1234), @@ -28350,6 +27329,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1234), [anon_sym__Alignof] = ACTIONS(1234), [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym_static_assert] = ACTIONS(1234), + [anon_sym__Static_assert] = ACTIONS(1234), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_typeof_unqual] = ACTIONS(1234), [anon_sym__Generic] = ACTIONS(1234), [anon_sym_asm] = ACTIONS(1234), [anon_sym___asm__] = ACTIONS(1234), @@ -28371,224 +27354,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, - [STATE(111)] = { - [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), - }, - [STATE(112)] = { - [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), - }, - [STATE(113)] = { + [STATE(86)] = { [sym_identifier] = ACTIONS(1238), [aux_sym_preproc_include_token1] = ACTIONS(1238), [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1238), + [aux_sym_preproc_embed_token1] = ACTIONS(1238), [aux_sym_preproc_if_token1] = ACTIONS(1238), [aux_sym_preproc_if_token2] = ACTIONS(1238), [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), @@ -28644,7 +27416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1238), [anon_sym_alignas] = ACTIONS(1238), [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), + [aux_sym_primitive_type_token1] = ACTIONS(1238), + [anon_sym__BitInt] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1238), [anon_sym_struct] = ACTIONS(1238), [anon_sym_union] = ACTIONS(1238), @@ -28671,6 +27444,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1238), [anon_sym__Alignof] = ACTIONS(1238), [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym_static_assert] = ACTIONS(1238), + [anon_sym__Static_assert] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_typeof_unqual] = ACTIONS(1238), [anon_sym__Generic] = ACTIONS(1238), [anon_sym_asm] = ACTIONS(1238), [anon_sym___asm__] = ACTIONS(1238), @@ -28692,10 +27469,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [STATE(114)] = { + [STATE(87)] = { [sym_identifier] = ACTIONS(1242), [aux_sym_preproc_include_token1] = ACTIONS(1242), [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1242), + [aux_sym_preproc_embed_token1] = ACTIONS(1242), [aux_sym_preproc_if_token1] = ACTIONS(1242), [aux_sym_preproc_if_token2] = ACTIONS(1242), [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), @@ -28751,7 +27531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1242), [anon_sym_alignas] = ACTIONS(1242), [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), + [aux_sym_primitive_type_token1] = ACTIONS(1242), + [anon_sym__BitInt] = ACTIONS(1242), [anon_sym_enum] = ACTIONS(1242), [anon_sym_struct] = ACTIONS(1242), [anon_sym_union] = ACTIONS(1242), @@ -28778,6 +27559,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1242), [anon_sym__Alignof] = ACTIONS(1242), [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym_static_assert] = ACTIONS(1242), + [anon_sym__Static_assert] = ACTIONS(1242), + [anon_sym_typeof] = ACTIONS(1242), + [anon_sym_typeof_unqual] = ACTIONS(1242), [anon_sym__Generic] = ACTIONS(1242), [anon_sym_asm] = ACTIONS(1242), [anon_sym___asm__] = ACTIONS(1242), @@ -28799,10 +27584,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, - [STATE(115)] = { + [STATE(88)] = { [sym_identifier] = ACTIONS(1246), [aux_sym_preproc_include_token1] = ACTIONS(1246), [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1246), + [aux_sym_preproc_embed_token1] = ACTIONS(1246), [aux_sym_preproc_if_token1] = ACTIONS(1246), [aux_sym_preproc_if_token2] = ACTIONS(1246), [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), @@ -28858,7 +27646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1246), [anon_sym_alignas] = ACTIONS(1246), [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), + [aux_sym_primitive_type_token1] = ACTIONS(1246), + [anon_sym__BitInt] = ACTIONS(1246), [anon_sym_enum] = ACTIONS(1246), [anon_sym_struct] = ACTIONS(1246), [anon_sym_union] = ACTIONS(1246), @@ -28885,6 +27674,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1246), [anon_sym__Alignof] = ACTIONS(1246), [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym_static_assert] = ACTIONS(1246), + [anon_sym__Static_assert] = ACTIONS(1246), + [anon_sym_typeof] = ACTIONS(1246), + [anon_sym_typeof_unqual] = ACTIONS(1246), [anon_sym__Generic] = ACTIONS(1246), [anon_sym_asm] = ACTIONS(1246), [anon_sym___asm__] = ACTIONS(1246), @@ -28906,10 +27699,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(3), }, - [STATE(116)] = { + [STATE(89)] = { [sym_identifier] = ACTIONS(1250), [aux_sym_preproc_include_token1] = ACTIONS(1250), [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1250), + [aux_sym_preproc_embed_token1] = ACTIONS(1250), [aux_sym_preproc_if_token1] = ACTIONS(1250), [aux_sym_preproc_if_token2] = ACTIONS(1250), [aux_sym_preproc_ifdef_token1] = ACTIONS(1250), @@ -28965,7 +27761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1250), [anon_sym_alignas] = ACTIONS(1250), [anon_sym__Alignas] = ACTIONS(1250), - [sym_primitive_type] = ACTIONS(1250), + [aux_sym_primitive_type_token1] = ACTIONS(1250), + [anon_sym__BitInt] = ACTIONS(1250), [anon_sym_enum] = ACTIONS(1250), [anon_sym_struct] = ACTIONS(1250), [anon_sym_union] = ACTIONS(1250), @@ -28992,6 +27789,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1250), [anon_sym__Alignof] = ACTIONS(1250), [anon_sym_offsetof] = ACTIONS(1250), + [anon_sym_static_assert] = ACTIONS(1250), + [anon_sym__Static_assert] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1250), + [anon_sym_typeof_unqual] = ACTIONS(1250), [anon_sym__Generic] = ACTIONS(1250), [anon_sym_asm] = ACTIONS(1250), [anon_sym___asm__] = ACTIONS(1250), @@ -29013,10 +27814,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1250), [sym_comment] = ACTIONS(3), }, - [STATE(117)] = { + [STATE(90)] = { [sym_identifier] = ACTIONS(1254), [aux_sym_preproc_include_token1] = ACTIONS(1254), [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_token1] = ACTIONS(1254), [aux_sym_preproc_if_token1] = ACTIONS(1254), [aux_sym_preproc_if_token2] = ACTIONS(1254), [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), @@ -29072,7 +27876,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1254), [anon_sym_alignas] = ACTIONS(1254), [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = ACTIONS(1254), [anon_sym_enum] = ACTIONS(1254), [anon_sym_struct] = ACTIONS(1254), [anon_sym_union] = ACTIONS(1254), @@ -29099,6 +27904,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1254), [anon_sym__Alignof] = ACTIONS(1254), [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = ACTIONS(1254), [anon_sym__Generic] = ACTIONS(1254), [anon_sym_asm] = ACTIONS(1254), [anon_sym___asm__] = ACTIONS(1254), @@ -29120,10 +27929,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(3), }, - [STATE(118)] = { + [STATE(91)] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(92)] = { [sym_identifier] = ACTIONS(1258), [aux_sym_preproc_include_token1] = ACTIONS(1258), [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1258), + [aux_sym_preproc_embed_token1] = ACTIONS(1258), [aux_sym_preproc_if_token1] = ACTIONS(1258), [aux_sym_preproc_if_token2] = ACTIONS(1258), [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), @@ -29179,7 +28106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1258), [anon_sym_alignas] = ACTIONS(1258), [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), + [aux_sym_primitive_type_token1] = ACTIONS(1258), + [anon_sym__BitInt] = ACTIONS(1258), [anon_sym_enum] = ACTIONS(1258), [anon_sym_struct] = ACTIONS(1258), [anon_sym_union] = ACTIONS(1258), @@ -29206,6 +28134,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1258), [anon_sym__Alignof] = ACTIONS(1258), [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym_static_assert] = ACTIONS(1258), + [anon_sym__Static_assert] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_typeof_unqual] = ACTIONS(1258), [anon_sym__Generic] = ACTIONS(1258), [anon_sym_asm] = ACTIONS(1258), [anon_sym___asm__] = ACTIONS(1258), @@ -29227,10 +28159,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, - [STATE(119)] = { + [STATE(93)] = { [sym_identifier] = ACTIONS(1262), [aux_sym_preproc_include_token1] = ACTIONS(1262), [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1262), + [aux_sym_preproc_embed_token1] = ACTIONS(1262), [aux_sym_preproc_if_token1] = ACTIONS(1262), [aux_sym_preproc_if_token2] = ACTIONS(1262), [aux_sym_preproc_ifdef_token1] = ACTIONS(1262), @@ -29286,11 +28221,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1262), [anon_sym_alignas] = ACTIONS(1262), [anon_sym__Alignas] = ACTIONS(1262), - [sym_primitive_type] = ACTIONS(1262), + [aux_sym_primitive_type_token1] = ACTIONS(1262), + [anon_sym__BitInt] = ACTIONS(1262), [anon_sym_enum] = ACTIONS(1262), [anon_sym_struct] = ACTIONS(1262), [anon_sym_union] = ACTIONS(1262), [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = ACTIONS(1262), [anon_sym_switch] = ACTIONS(1262), [anon_sym_case] = ACTIONS(1262), [anon_sym_default] = ACTIONS(1262), @@ -29312,6 +28249,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1262), [anon_sym__Alignof] = ACTIONS(1262), [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym_static_assert] = ACTIONS(1262), + [anon_sym__Static_assert] = ACTIONS(1262), + [anon_sym_typeof] = ACTIONS(1262), + [anon_sym_typeof_unqual] = ACTIONS(1262), [anon_sym__Generic] = ACTIONS(1262), [anon_sym_asm] = ACTIONS(1262), [anon_sym___asm__] = ACTIONS(1262), @@ -29333,10 +28274,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, - [STATE(120)] = { + [STATE(94)] = { [sym_identifier] = ACTIONS(1266), [aux_sym_preproc_include_token1] = ACTIONS(1266), [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1266), + [aux_sym_preproc_embed_token1] = ACTIONS(1266), [aux_sym_preproc_if_token1] = ACTIONS(1266), [aux_sym_preproc_if_token2] = ACTIONS(1266), [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), @@ -29392,11 +28336,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1266), [anon_sym_alignas] = ACTIONS(1266), [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), + [aux_sym_primitive_type_token1] = ACTIONS(1266), + [anon_sym__BitInt] = ACTIONS(1266), [anon_sym_enum] = ACTIONS(1266), [anon_sym_struct] = ACTIONS(1266), [anon_sym_union] = ACTIONS(1266), [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), [anon_sym_switch] = ACTIONS(1266), [anon_sym_case] = ACTIONS(1266), [anon_sym_default] = ACTIONS(1266), @@ -29418,6 +28364,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1266), [anon_sym__Alignof] = ACTIONS(1266), [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym_static_assert] = ACTIONS(1266), + [anon_sym__Static_assert] = ACTIONS(1266), + [anon_sym_typeof] = ACTIONS(1266), + [anon_sym_typeof_unqual] = ACTIONS(1266), [anon_sym__Generic] = ACTIONS(1266), [anon_sym_asm] = ACTIONS(1266), [anon_sym___asm__] = ACTIONS(1266), @@ -29439,116 +28389,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [STATE(121)] = { - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [aux_sym_preproc_else_token1] = ACTIONS(1270), - [aux_sym_preproc_elif_token1] = ACTIONS(1270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___attribute] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym__Nonnull] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym___try] = ACTIONS(1270), - [anon_sym___leave] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [anon_sym___asm] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), + [STATE(95)] = { + [ts_builtin_sym_end] = ACTIONS(1270), + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [anon_sym_COMMA] = ACTIONS(1270), + [anon_sym_RPAREN] = ACTIONS(1270), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1272), + [aux_sym_preproc_embed_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(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [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(1270), + [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(1270), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1272), + [anon_sym__BitInt] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = 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___except] = ACTIONS(1272), + [anon_sym___finally] = ACTIONS(1272), + [anon_sym___leave] = ACTIONS(1272), + [anon_sym_DASH_DASH] = ACTIONS(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [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_static_assert] = ACTIONS(1272), + [anon_sym__Static_assert] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof_unqual] = 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(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(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [STATE(122)] = { + [STATE(96)] = { [sym_identifier] = ACTIONS(1274), [aux_sym_preproc_include_token1] = ACTIONS(1274), [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1274), + [aux_sym_preproc_embed_token1] = ACTIONS(1274), [aux_sym_preproc_if_token1] = ACTIONS(1274), [aux_sym_preproc_if_token2] = ACTIONS(1274), [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), @@ -29604,11 +28566,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1274), [anon_sym_alignas] = ACTIONS(1274), [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), + [aux_sym_primitive_type_token1] = ACTIONS(1274), + [anon_sym__BitInt] = ACTIONS(1274), [anon_sym_enum] = ACTIONS(1274), [anon_sym_struct] = ACTIONS(1274), [anon_sym_union] = ACTIONS(1274), [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), [anon_sym_switch] = ACTIONS(1274), [anon_sym_case] = ACTIONS(1274), [anon_sym_default] = ACTIONS(1274), @@ -29630,6 +28594,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1274), [anon_sym__Alignof] = ACTIONS(1274), [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym_static_assert] = ACTIONS(1274), + [anon_sym__Static_assert] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1274), + [anon_sym_typeof_unqual] = ACTIONS(1274), [anon_sym__Generic] = ACTIONS(1274), [anon_sym_asm] = ACTIONS(1274), [anon_sym___asm__] = ACTIONS(1274), @@ -29651,10 +28619,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [STATE(123)] = { + [STATE(97)] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(98)] = { [sym_identifier] = ACTIONS(1278), [aux_sym_preproc_include_token1] = ACTIONS(1278), [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1278), + [aux_sym_preproc_embed_token1] = ACTIONS(1278), [aux_sym_preproc_if_token1] = ACTIONS(1278), [aux_sym_preproc_if_token2] = ACTIONS(1278), [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), @@ -29710,11 +28796,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1278), [anon_sym_alignas] = ACTIONS(1278), [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), + [aux_sym_primitive_type_token1] = ACTIONS(1278), + [anon_sym__BitInt] = ACTIONS(1278), [anon_sym_enum] = ACTIONS(1278), [anon_sym_struct] = ACTIONS(1278), [anon_sym_union] = ACTIONS(1278), [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), [anon_sym_switch] = ACTIONS(1278), [anon_sym_case] = ACTIONS(1278), [anon_sym_default] = ACTIONS(1278), @@ -29736,6 +28824,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1278), [anon_sym__Alignof] = ACTIONS(1278), [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym_static_assert] = ACTIONS(1278), + [anon_sym__Static_assert] = ACTIONS(1278), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_typeof_unqual] = ACTIONS(1278), [anon_sym__Generic] = ACTIONS(1278), [anon_sym_asm] = ACTIONS(1278), [anon_sym___asm__] = ACTIONS(1278), @@ -29757,10 +28849,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, - [STATE(124)] = { + [STATE(99)] = { [sym_identifier] = ACTIONS(1282), [aux_sym_preproc_include_token1] = ACTIONS(1282), [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1282), + [aux_sym_preproc_embed_token1] = ACTIONS(1282), [aux_sym_preproc_if_token1] = ACTIONS(1282), [aux_sym_preproc_if_token2] = ACTIONS(1282), [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), @@ -29816,11 +28911,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1282), [anon_sym_alignas] = ACTIONS(1282), [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), + [aux_sym_primitive_type_token1] = ACTIONS(1282), + [anon_sym__BitInt] = ACTIONS(1282), [anon_sym_enum] = ACTIONS(1282), [anon_sym_struct] = ACTIONS(1282), [anon_sym_union] = ACTIONS(1282), [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), [anon_sym_switch] = ACTIONS(1282), [anon_sym_case] = ACTIONS(1282), [anon_sym_default] = ACTIONS(1282), @@ -29842,6 +28939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1282), [anon_sym__Alignof] = ACTIONS(1282), [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym_static_assert] = ACTIONS(1282), + [anon_sym__Static_assert] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1282), + [anon_sym_typeof_unqual] = ACTIONS(1282), [anon_sym__Generic] = ACTIONS(1282), [anon_sym_asm] = ACTIONS(1282), [anon_sym___asm__] = ACTIONS(1282), @@ -29863,10 +28964,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, - [STATE(125)] = { + [STATE(100)] = { [sym_identifier] = ACTIONS(1286), [aux_sym_preproc_include_token1] = ACTIONS(1286), [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1286), + [aux_sym_preproc_embed_token1] = ACTIONS(1286), [aux_sym_preproc_if_token1] = ACTIONS(1286), [aux_sym_preproc_if_token2] = ACTIONS(1286), [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), @@ -29922,11 +29026,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1286), [anon_sym_alignas] = ACTIONS(1286), [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), + [aux_sym_primitive_type_token1] = ACTIONS(1286), + [anon_sym__BitInt] = ACTIONS(1286), [anon_sym_enum] = ACTIONS(1286), [anon_sym_struct] = ACTIONS(1286), [anon_sym_union] = ACTIONS(1286), [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), [anon_sym_switch] = ACTIONS(1286), [anon_sym_case] = ACTIONS(1286), [anon_sym_default] = ACTIONS(1286), @@ -29948,6 +29054,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1286), [anon_sym__Alignof] = ACTIONS(1286), [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym_static_assert] = ACTIONS(1286), + [anon_sym__Static_assert] = ACTIONS(1286), + [anon_sym_typeof] = ACTIONS(1286), + [anon_sym_typeof_unqual] = ACTIONS(1286), [anon_sym__Generic] = ACTIONS(1286), [anon_sym_asm] = ACTIONS(1286), [anon_sym___asm__] = ACTIONS(1286), @@ -29969,10 +29079,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, - [STATE(126)] = { + [STATE(101)] = { [sym_identifier] = ACTIONS(1290), [aux_sym_preproc_include_token1] = ACTIONS(1290), [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1290), + [aux_sym_preproc_embed_token1] = ACTIONS(1290), [aux_sym_preproc_if_token1] = ACTIONS(1290), [aux_sym_preproc_if_token2] = ACTIONS(1290), [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), @@ -30028,11 +29141,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1290), [anon_sym_alignas] = ACTIONS(1290), [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), + [aux_sym_primitive_type_token1] = ACTIONS(1290), + [anon_sym__BitInt] = ACTIONS(1290), [anon_sym_enum] = ACTIONS(1290), [anon_sym_struct] = ACTIONS(1290), [anon_sym_union] = ACTIONS(1290), [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), [anon_sym_switch] = ACTIONS(1290), [anon_sym_case] = ACTIONS(1290), [anon_sym_default] = ACTIONS(1290), @@ -30054,6 +29169,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1290), [anon_sym__Alignof] = ACTIONS(1290), [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym_static_assert] = ACTIONS(1290), + [anon_sym__Static_assert] = ACTIONS(1290), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_typeof_unqual] = ACTIONS(1290), [anon_sym__Generic] = ACTIONS(1290), [anon_sym_asm] = ACTIONS(1290), [anon_sym___asm__] = ACTIONS(1290), @@ -30075,10 +29194,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(3), }, - [STATE(127)] = { + [STATE(102)] = { [sym_identifier] = ACTIONS(1294), [aux_sym_preproc_include_token1] = ACTIONS(1294), [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1294), + [aux_sym_preproc_embed_token1] = ACTIONS(1294), [aux_sym_preproc_if_token1] = ACTIONS(1294), [aux_sym_preproc_if_token2] = ACTIONS(1294), [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), @@ -30134,11 +29256,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1294), [anon_sym_alignas] = ACTIONS(1294), [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), + [aux_sym_primitive_type_token1] = ACTIONS(1294), + [anon_sym__BitInt] = ACTIONS(1294), [anon_sym_enum] = ACTIONS(1294), [anon_sym_struct] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1294), [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), [anon_sym_switch] = ACTIONS(1294), [anon_sym_case] = ACTIONS(1294), [anon_sym_default] = ACTIONS(1294), @@ -30160,6 +29284,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1294), [anon_sym__Alignof] = ACTIONS(1294), [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym__Static_assert] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(1294), + [anon_sym_typeof_unqual] = ACTIONS(1294), [anon_sym__Generic] = ACTIONS(1294), [anon_sym_asm] = ACTIONS(1294), [anon_sym___asm__] = ACTIONS(1294), @@ -30181,10 +29309,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(3), }, - [STATE(128)] = { + [STATE(103)] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1298), + [aux_sym_preproc_embed_token1] = ACTIONS(1298), [aux_sym_preproc_if_token1] = ACTIONS(1298), [aux_sym_preproc_if_token2] = ACTIONS(1298), [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), @@ -30240,11 +29371,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1298), [anon_sym_alignas] = ACTIONS(1298), [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), + [aux_sym_primitive_type_token1] = ACTIONS(1298), + [anon_sym__BitInt] = ACTIONS(1298), [anon_sym_enum] = ACTIONS(1298), [anon_sym_struct] = ACTIONS(1298), [anon_sym_union] = ACTIONS(1298), [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), [anon_sym_switch] = ACTIONS(1298), [anon_sym_case] = ACTIONS(1298), [anon_sym_default] = ACTIONS(1298), @@ -30266,6 +29399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1298), [anon_sym__Alignof] = ACTIONS(1298), [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym_static_assert] = ACTIONS(1298), + [anon_sym__Static_assert] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof_unqual] = ACTIONS(1298), [anon_sym__Generic] = ACTIONS(1298), [anon_sym_asm] = ACTIONS(1298), [anon_sym___asm__] = ACTIONS(1298), @@ -30287,10 +29424,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [STATE(129)] = { + [STATE(104)] = { [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1302), + [aux_sym_preproc_embed_token1] = ACTIONS(1302), [aux_sym_preproc_if_token1] = ACTIONS(1302), [aux_sym_preproc_if_token2] = ACTIONS(1302), [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), @@ -30346,11 +29486,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1302), [anon_sym_alignas] = ACTIONS(1302), [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), + [aux_sym_primitive_type_token1] = ACTIONS(1302), + [anon_sym__BitInt] = ACTIONS(1302), [anon_sym_enum] = ACTIONS(1302), [anon_sym_struct] = ACTIONS(1302), [anon_sym_union] = ACTIONS(1302), [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), [anon_sym_switch] = ACTIONS(1302), [anon_sym_case] = ACTIONS(1302), [anon_sym_default] = ACTIONS(1302), @@ -30372,6 +29514,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1302), [anon_sym__Alignof] = ACTIONS(1302), [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym_static_assert] = ACTIONS(1302), + [anon_sym__Static_assert] = ACTIONS(1302), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_typeof_unqual] = ACTIONS(1302), [anon_sym__Generic] = ACTIONS(1302), [anon_sym_asm] = ACTIONS(1302), [anon_sym___asm__] = ACTIONS(1302), @@ -30393,10 +29539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [STATE(130)] = { + [STATE(105)] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1306), + [aux_sym_preproc_embed_token1] = ACTIONS(1306), [aux_sym_preproc_if_token1] = ACTIONS(1306), [aux_sym_preproc_if_token2] = ACTIONS(1306), [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), @@ -30452,11 +29601,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1306), [anon_sym_alignas] = ACTIONS(1306), [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), + [aux_sym_primitive_type_token1] = ACTIONS(1306), + [anon_sym__BitInt] = ACTIONS(1306), [anon_sym_enum] = ACTIONS(1306), [anon_sym_struct] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1306), [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), [anon_sym_switch] = ACTIONS(1306), [anon_sym_case] = ACTIONS(1306), [anon_sym_default] = ACTIONS(1306), @@ -30478,6 +29629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1306), [anon_sym__Alignof] = ACTIONS(1306), [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym_static_assert] = ACTIONS(1306), + [anon_sym__Static_assert] = ACTIONS(1306), + [anon_sym_typeof] = ACTIONS(1306), + [anon_sym_typeof_unqual] = ACTIONS(1306), [anon_sym__Generic] = ACTIONS(1306), [anon_sym_asm] = ACTIONS(1306), [anon_sym___asm__] = ACTIONS(1306), @@ -30499,10 +29654,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [STATE(131)] = { + [STATE(106)] = { [sym_identifier] = ACTIONS(1310), [aux_sym_preproc_include_token1] = ACTIONS(1310), [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1310), + [aux_sym_preproc_embed_token1] = ACTIONS(1310), [aux_sym_preproc_if_token1] = ACTIONS(1310), [aux_sym_preproc_if_token2] = ACTIONS(1310), [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), @@ -30558,11 +29716,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1310), [anon_sym_alignas] = ACTIONS(1310), [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), + [aux_sym_primitive_type_token1] = ACTIONS(1310), + [anon_sym__BitInt] = ACTIONS(1310), [anon_sym_enum] = ACTIONS(1310), [anon_sym_struct] = ACTIONS(1310), [anon_sym_union] = ACTIONS(1310), [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), [anon_sym_switch] = ACTIONS(1310), [anon_sym_case] = ACTIONS(1310), [anon_sym_default] = ACTIONS(1310), @@ -30584,6 +29744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1310), [anon_sym__Alignof] = ACTIONS(1310), [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym_static_assert] = ACTIONS(1310), + [anon_sym__Static_assert] = ACTIONS(1310), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_typeof_unqual] = ACTIONS(1310), [anon_sym__Generic] = ACTIONS(1310), [anon_sym_asm] = ACTIONS(1310), [anon_sym___asm__] = ACTIONS(1310), @@ -30605,10 +29769,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [STATE(132)] = { + [STATE(107)] = { [sym_identifier] = ACTIONS(1314), [aux_sym_preproc_include_token1] = ACTIONS(1314), [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1314), + [aux_sym_preproc_embed_token1] = ACTIONS(1314), [aux_sym_preproc_if_token1] = ACTIONS(1314), [aux_sym_preproc_if_token2] = ACTIONS(1314), [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), @@ -30664,11 +29831,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1314), [anon_sym_alignas] = ACTIONS(1314), [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), + [aux_sym_primitive_type_token1] = ACTIONS(1314), + [anon_sym__BitInt] = ACTIONS(1314), [anon_sym_enum] = ACTIONS(1314), [anon_sym_struct] = ACTIONS(1314), [anon_sym_union] = ACTIONS(1314), [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), [anon_sym_switch] = ACTIONS(1314), [anon_sym_case] = ACTIONS(1314), [anon_sym_default] = ACTIONS(1314), @@ -30690,6 +29859,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1314), [anon_sym__Alignof] = ACTIONS(1314), [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym__Static_assert] = ACTIONS(1314), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_typeof_unqual] = ACTIONS(1314), [anon_sym__Generic] = ACTIONS(1314), [anon_sym_asm] = ACTIONS(1314), [anon_sym___asm__] = ACTIONS(1314), @@ -30711,10 +29884,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [STATE(133)] = { + [STATE(108)] = { [sym_identifier] = ACTIONS(1318), [aux_sym_preproc_include_token1] = ACTIONS(1318), [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), [aux_sym_preproc_if_token1] = ACTIONS(1318), [aux_sym_preproc_if_token2] = ACTIONS(1318), [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), @@ -30770,11 +29946,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1318), [anon_sym_alignas] = ACTIONS(1318), [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), [anon_sym_enum] = ACTIONS(1318), [anon_sym_struct] = ACTIONS(1318), [anon_sym_union] = ACTIONS(1318), [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), [anon_sym_switch] = ACTIONS(1318), [anon_sym_case] = ACTIONS(1318), [anon_sym_default] = ACTIONS(1318), @@ -30796,6 +29974,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1318), [anon_sym__Alignof] = ACTIONS(1318), [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), [anon_sym__Generic] = ACTIONS(1318), [anon_sym_asm] = ACTIONS(1318), [anon_sym___asm__] = ACTIONS(1318), @@ -30817,10 +29999,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(134)] = { + [STATE(109)] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), + [sym_comment] = ACTIONS(3), + }, + [STATE(110)] = { [sym_identifier] = ACTIONS(1322), [aux_sym_preproc_include_token1] = ACTIONS(1322), [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1322), + [aux_sym_preproc_embed_token1] = ACTIONS(1322), [aux_sym_preproc_if_token1] = ACTIONS(1322), [aux_sym_preproc_if_token2] = ACTIONS(1322), [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), @@ -30876,11 +30176,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1322), [anon_sym_alignas] = ACTIONS(1322), [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), + [aux_sym_primitive_type_token1] = ACTIONS(1322), + [anon_sym__BitInt] = ACTIONS(1322), [anon_sym_enum] = ACTIONS(1322), [anon_sym_struct] = ACTIONS(1322), [anon_sym_union] = ACTIONS(1322), [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), [anon_sym_switch] = ACTIONS(1322), [anon_sym_case] = ACTIONS(1322), [anon_sym_default] = ACTIONS(1322), @@ -30902,6 +30204,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1322), [anon_sym__Alignof] = ACTIONS(1322), [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym__Static_assert] = ACTIONS(1322), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_typeof_unqual] = ACTIONS(1322), [anon_sym__Generic] = ACTIONS(1322), [anon_sym_asm] = ACTIONS(1322), [anon_sym___asm__] = ACTIONS(1322), @@ -30923,10 +30229,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [STATE(135)] = { + [STATE(111)] = { [sym_identifier] = ACTIONS(1326), [aux_sym_preproc_include_token1] = ACTIONS(1326), [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1326), + [aux_sym_preproc_embed_token1] = ACTIONS(1326), [aux_sym_preproc_if_token1] = ACTIONS(1326), [aux_sym_preproc_if_token2] = ACTIONS(1326), [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), @@ -30982,11 +30291,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1326), [anon_sym_alignas] = ACTIONS(1326), [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), + [aux_sym_primitive_type_token1] = ACTIONS(1326), + [anon_sym__BitInt] = ACTIONS(1326), [anon_sym_enum] = ACTIONS(1326), [anon_sym_struct] = ACTIONS(1326), [anon_sym_union] = ACTIONS(1326), [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), [anon_sym_switch] = ACTIONS(1326), [anon_sym_case] = ACTIONS(1326), [anon_sym_default] = ACTIONS(1326), @@ -31008,6 +30319,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1326), [anon_sym__Alignof] = ACTIONS(1326), [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym_static_assert] = ACTIONS(1326), + [anon_sym__Static_assert] = ACTIONS(1326), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_typeof_unqual] = ACTIONS(1326), [anon_sym__Generic] = ACTIONS(1326), [anon_sym_asm] = ACTIONS(1326), [anon_sym___asm__] = ACTIONS(1326), @@ -31029,10 +30344,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [STATE(136)] = { + [STATE(112)] = { [sym_identifier] = ACTIONS(1330), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1330), + [aux_sym_preproc_embed_token1] = ACTIONS(1330), [aux_sym_preproc_if_token1] = ACTIONS(1330), [aux_sym_preproc_if_token2] = ACTIONS(1330), [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), @@ -31088,11 +30406,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1330), [anon_sym_alignas] = ACTIONS(1330), [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), + [aux_sym_primitive_type_token1] = ACTIONS(1330), + [anon_sym__BitInt] = ACTIONS(1330), [anon_sym_enum] = ACTIONS(1330), [anon_sym_struct] = ACTIONS(1330), [anon_sym_union] = ACTIONS(1330), [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), [anon_sym_switch] = ACTIONS(1330), [anon_sym_case] = ACTIONS(1330), [anon_sym_default] = ACTIONS(1330), @@ -31114,6 +30434,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1330), [anon_sym__Alignof] = ACTIONS(1330), [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym_static_assert] = ACTIONS(1330), + [anon_sym__Static_assert] = ACTIONS(1330), + [anon_sym_typeof] = ACTIONS(1330), + [anon_sym_typeof_unqual] = ACTIONS(1330), [anon_sym__Generic] = ACTIONS(1330), [anon_sym_asm] = ACTIONS(1330), [anon_sym___asm__] = ACTIONS(1330), @@ -31135,10 +30459,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [STATE(137)] = { + [STATE(113)] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1272), + [aux_sym_preproc_embed_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(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [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(1270), + [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(1270), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1272), + [anon_sym__BitInt] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = 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(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [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_static_assert] = ACTIONS(1272), + [anon_sym__Static_assert] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof_unqual] = 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(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(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), + [sym_comment] = ACTIONS(3), + }, + [STATE(114)] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1298), + [aux_sym_preproc_embed_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [aux_sym_primitive_type_token1] = ACTIONS(1298), + [anon_sym__BitInt] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___except] = ACTIONS(1298), + [anon_sym___finally] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym_static_assert] = ACTIONS(1298), + [anon_sym__Static_assert] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof_unqual] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [STATE(115)] = { [sym_identifier] = ACTIONS(1334), [aux_sym_preproc_include_token1] = ACTIONS(1334), [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1334), + [aux_sym_preproc_embed_token1] = ACTIONS(1334), [aux_sym_preproc_if_token1] = ACTIONS(1334), [aux_sym_preproc_if_token2] = ACTIONS(1334), [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), @@ -31148,20 +30705,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), [anon_sym_DASH] = ACTIONS(1334), [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), [anon_sym___extension__] = ACTIONS(1334), [anon_sym_typedef] = ACTIONS(1334), [anon_sym_extern] = ACTIONS(1334), [anon_sym___attribute__] = ACTIONS(1334), [anon_sym___attribute] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), [anon_sym___declspec] = ACTIONS(1334), [anon_sym___cdecl] = ACTIONS(1334), [anon_sym___clrcall] = ACTIONS(1334), @@ -31169,7 +30726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1334), [anon_sym___thiscall] = ACTIONS(1334), [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1336), [anon_sym_signed] = ACTIONS(1334), [anon_sym_unsigned] = ACTIONS(1334), [anon_sym_long] = ACTIONS(1334), @@ -31194,11 +30751,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1334), [anon_sym_alignas] = ACTIONS(1334), [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), + [aux_sym_primitive_type_token1] = ACTIONS(1334), + [anon_sym__BitInt] = ACTIONS(1334), [anon_sym_enum] = ACTIONS(1334), [anon_sym_struct] = ACTIONS(1334), [anon_sym_union] = ACTIONS(1334), [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), [anon_sym_switch] = ACTIONS(1334), [anon_sym_case] = ACTIONS(1334), [anon_sym_default] = ACTIONS(1334), @@ -31211,8 +30770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(1334), [anon_sym___try] = ACTIONS(1334), [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), [anon_sym_sizeof] = ACTIONS(1334), [anon_sym___alignof__] = ACTIONS(1334), [anon_sym___alignof] = ACTIONS(1334), @@ -31220,2016 +30779,4473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1334), [anon_sym__Alignof] = ACTIONS(1334), [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym_static_assert] = ACTIONS(1334), + [anon_sym__Static_assert] = ACTIONS(1334), + [anon_sym_typeof] = ACTIONS(1334), + [anon_sym_typeof_unqual] = ACTIONS(1334), [anon_sym__Generic] = ACTIONS(1334), [anon_sym_asm] = ACTIONS(1334), [anon_sym___asm__] = ACTIONS(1334), [anon_sym___asm] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), [sym_true] = ACTIONS(1334), [sym_false] = ACTIONS(1334), [anon_sym_NULL] = ACTIONS(1334), [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, + [STATE(116)] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [STATE(117)] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [STATE(118)] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1342), + [aux_sym_preproc_embed_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___attribute] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym__Nonnull] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [aux_sym_primitive_type_token1] = ACTIONS(1342), + [anon_sym__BitInt] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym_static_assert] = ACTIONS(1342), + [anon_sym__Static_assert] = ACTIONS(1342), + [anon_sym_typeof] = ACTIONS(1342), + [anon_sym_typeof_unqual] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [anon_sym___asm] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [STATE(119)] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1346), + [aux_sym_preproc_embed_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___attribute] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym__Nonnull] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [aux_sym_primitive_type_token1] = ACTIONS(1346), + [anon_sym__BitInt] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym_static_assert] = ACTIONS(1346), + [anon_sym__Static_assert] = ACTIONS(1346), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_typeof_unqual] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [anon_sym___asm] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [STATE(120)] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1350), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1350), + [aux_sym_preproc_embed_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [aux_sym_preproc_else_token1] = ACTIONS(1350), + [aux_sym_preproc_elif_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___attribute] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym__Nonnull] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [aux_sym_primitive_type_token1] = ACTIONS(1350), + [anon_sym__BitInt] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym_static_assert] = ACTIONS(1350), + [anon_sym__Static_assert] = ACTIONS(1350), + [anon_sym_typeof] = ACTIONS(1350), + [anon_sym_typeof_unqual] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [anon_sym___asm] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [STATE(121)] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1354), + [aux_sym_preproc_embed_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [aux_sym_preproc_else_token1] = ACTIONS(1354), + [aux_sym_preproc_elif_token1] = ACTIONS(1354), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___attribute] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym__Nonnull] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [aux_sym_primitive_type_token1] = ACTIONS(1354), + [anon_sym__BitInt] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym_static_assert] = ACTIONS(1354), + [anon_sym__Static_assert] = ACTIONS(1354), + [anon_sym_typeof] = ACTIONS(1354), + [anon_sym_typeof_unqual] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [anon_sym___asm] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + }, + [STATE(122)] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1358), + [aux_sym_preproc_embed_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___attribute] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym__Nonnull] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [aux_sym_primitive_type_token1] = ACTIONS(1358), + [anon_sym__BitInt] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym_static_assert] = ACTIONS(1358), + [anon_sym__Static_assert] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_typeof_unqual] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [anon_sym___asm] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [STATE(123)] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1362), + [aux_sym_preproc_embed_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___attribute] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym__Nonnull] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [aux_sym_primitive_type_token1] = ACTIONS(1362), + [anon_sym__BitInt] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym_static_assert] = ACTIONS(1362), + [anon_sym__Static_assert] = ACTIONS(1362), + [anon_sym_typeof] = ACTIONS(1362), + [anon_sym_typeof_unqual] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [anon_sym___asm] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [STATE(124)] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1366), + [aux_sym_preproc_embed_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___attribute] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym__Nonnull] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [aux_sym_primitive_type_token1] = ACTIONS(1366), + [anon_sym__BitInt] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym_static_assert] = ACTIONS(1366), + [anon_sym__Static_assert] = ACTIONS(1366), + [anon_sym_typeof] = ACTIONS(1366), + [anon_sym_typeof_unqual] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [anon_sym___asm] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + }, + [STATE(125)] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1370), + [aux_sym_preproc_embed_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [aux_sym_preproc_else_token1] = ACTIONS(1370), + [aux_sym_preproc_elif_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___attribute] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym__Nonnull] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [aux_sym_primitive_type_token1] = ACTIONS(1370), + [anon_sym__BitInt] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym_static_assert] = ACTIONS(1370), + [anon_sym__Static_assert] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_typeof_unqual] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [anon_sym___asm] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), + [sym_comment] = ACTIONS(3), + }, + [STATE(126)] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1374), + [aux_sym_preproc_embed_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [aux_sym_preproc_else_token1] = ACTIONS(1374), + [aux_sym_preproc_elif_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___attribute] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym__Nonnull] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [aux_sym_primitive_type_token1] = ACTIONS(1374), + [anon_sym__BitInt] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym_static_assert] = ACTIONS(1374), + [anon_sym__Static_assert] = ACTIONS(1374), + [anon_sym_typeof] = ACTIONS(1374), + [anon_sym_typeof_unqual] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [anon_sym___asm] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + }, + [STATE(127)] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1378), + [aux_sym_preproc_embed_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [aux_sym_preproc_else_token1] = ACTIONS(1378), + [aux_sym_preproc_elif_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___attribute] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym__Nonnull] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [aux_sym_primitive_type_token1] = ACTIONS(1378), + [anon_sym__BitInt] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym_static_assert] = ACTIONS(1378), + [anon_sym__Static_assert] = ACTIONS(1378), + [anon_sym_typeof] = ACTIONS(1378), + [anon_sym_typeof_unqual] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [anon_sym___asm] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [STATE(128)] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1382), + [aux_sym_preproc_embed_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [aux_sym_preproc_else_token1] = ACTIONS(1382), + [aux_sym_preproc_elif_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___attribute] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym__Nonnull] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [aux_sym_primitive_type_token1] = ACTIONS(1382), + [anon_sym__BitInt] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym_static_assert] = ACTIONS(1382), + [anon_sym__Static_assert] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1382), + [anon_sym_typeof_unqual] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [anon_sym___asm] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), + [sym_comment] = ACTIONS(3), + }, + [STATE(129)] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1386), + [aux_sym_preproc_embed_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [aux_sym_preproc_else_token1] = ACTIONS(1386), + [aux_sym_preproc_elif_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___attribute] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym__Nonnull] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [aux_sym_primitive_type_token1] = ACTIONS(1386), + [anon_sym__BitInt] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym_static_assert] = ACTIONS(1386), + [anon_sym__Static_assert] = ACTIONS(1386), + [anon_sym_typeof] = ACTIONS(1386), + [anon_sym_typeof_unqual] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [anon_sym___asm] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), + [sym_comment] = ACTIONS(3), + }, + [STATE(130)] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1390), + [aux_sym_preproc_embed_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [aux_sym_preproc_else_token1] = ACTIONS(1390), + [aux_sym_preproc_elif_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___attribute] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym__Nonnull] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [aux_sym_primitive_type_token1] = ACTIONS(1390), + [anon_sym__BitInt] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym_static_assert] = ACTIONS(1390), + [anon_sym__Static_assert] = ACTIONS(1390), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_typeof_unqual] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [anon_sym___asm] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), + [sym_comment] = ACTIONS(3), + }, + [STATE(131)] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1394), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1394), + [aux_sym_preproc_embed_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___attribute] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym__Nonnull] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [aux_sym_primitive_type_token1] = ACTIONS(1394), + [anon_sym__BitInt] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym_static_assert] = ACTIONS(1394), + [anon_sym__Static_assert] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(1394), + [anon_sym_typeof_unqual] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [anon_sym___asm] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1397), + [anon_sym_L_SQUOTE] = ACTIONS(1397), + [anon_sym_u_SQUOTE] = ACTIONS(1397), + [anon_sym_U_SQUOTE] = ACTIONS(1397), + [anon_sym_u8_SQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_L_DQUOTE] = ACTIONS(1397), + [anon_sym_u_DQUOTE] = ACTIONS(1397), + [anon_sym_U_DQUOTE] = ACTIONS(1397), + [anon_sym_u8_DQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, + [STATE(132)] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1400), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1400), + [anon_sym__BitInt] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = 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_static_assert] = ACTIONS(1400), + [anon_sym__Static_assert] = ACTIONS(1400), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_typeof_unqual] = 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(133)] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1404), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1404), + [anon_sym__BitInt] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = 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_static_assert] = ACTIONS(1404), + [anon_sym__Static_assert] = ACTIONS(1404), + [anon_sym_typeof] = ACTIONS(1404), + [anon_sym_typeof_unqual] = 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(134)] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1408), + [aux_sym_preproc_embed_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [aux_sym_preproc_else_token1] = ACTIONS(1408), + [aux_sym_preproc_elif_token1] = ACTIONS(1408), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___attribute] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [anon_sym__Nonnull] = ACTIONS(1408), + [anon_sym_alignas] = ACTIONS(1408), + [anon_sym__Alignas] = ACTIONS(1408), + [aux_sym_primitive_type_token1] = ACTIONS(1408), + [anon_sym__BitInt] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym_static_assert] = ACTIONS(1408), + [anon_sym__Static_assert] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof_unqual] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [anon_sym___asm] = ACTIONS(1408), + [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(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), + [sym_comment] = ACTIONS(3), + }, + [STATE(135)] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1412), + [aux_sym_preproc_embed_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_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_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), + [aux_sym_primitive_type_token1] = ACTIONS(1412), + [anon_sym__BitInt] = 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___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_static_assert] = ACTIONS(1412), + [anon_sym__Static_assert] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(1412), + [anon_sym_typeof_unqual] = 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(136)] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1416), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1416), + [anon_sym__BitInt] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = 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_static_assert] = ACTIONS(1416), + [anon_sym__Static_assert] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_typeof_unqual] = 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(137)] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1420), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1420), + [anon_sym__BitInt] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = 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_static_assert] = ACTIONS(1420), + [anon_sym__Static_assert] = ACTIONS(1420), + [anon_sym_typeof] = ACTIONS(1420), + [anon_sym_typeof_unqual] = 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), + }, [STATE(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), + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1424), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1424), + [anon_sym__BitInt] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = 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_static_assert] = ACTIONS(1424), + [anon_sym__Static_assert] = ACTIONS(1424), + [anon_sym_typeof] = ACTIONS(1424), + [anon_sym_typeof_unqual] = 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(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_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1428), + [aux_sym_preproc_embed_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(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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1428), + [anon_sym__BitInt] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = 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_static_assert] = ACTIONS(1428), + [anon_sym__Static_assert] = ACTIONS(1428), + [anon_sym_typeof] = ACTIONS(1428), + [anon_sym_typeof_unqual] = 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(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), + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1432), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1432), + [anon_sym__BitInt] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = 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_static_assert] = ACTIONS(1432), + [anon_sym__Static_assert] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_typeof_unqual] = 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), }, [STATE(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), + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1436), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1436), + [anon_sym__BitInt] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = 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_static_assert] = ACTIONS(1436), + [anon_sym__Static_assert] = ACTIONS(1436), + [anon_sym_typeof] = ACTIONS(1436), + [anon_sym_typeof_unqual] = 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(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), + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1440), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1440), + [anon_sym__BitInt] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = 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_static_assert] = ACTIONS(1440), + [anon_sym__Static_assert] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_typeof_unqual] = 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(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), + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1444), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1444), + [anon_sym__BitInt] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = 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_static_assert] = ACTIONS(1444), + [anon_sym__Static_assert] = ACTIONS(1444), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_typeof_unqual] = 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(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), + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1448), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1448), + [anon_sym__BitInt] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = 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_static_assert] = ACTIONS(1448), + [anon_sym__Static_assert] = ACTIONS(1448), + [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_typeof_unqual] = 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(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), + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1452), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1452), + [anon_sym__BitInt] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = 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_static_assert] = ACTIONS(1452), + [anon_sym__Static_assert] = ACTIONS(1452), + [anon_sym_typeof] = ACTIONS(1452), + [anon_sym_typeof_unqual] = 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(146)] = { - [sym_else_clause] = STATE(250), - [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(1372), - [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_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1456), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1456), + [anon_sym__BitInt] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = 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_static_assert] = ACTIONS(1456), + [anon_sym__Static_assert] = ACTIONS(1456), + [anon_sym_typeof] = ACTIONS(1456), + [anon_sym_typeof_unqual] = 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(147)] = { - [sym_else_clause] = STATE(224), - [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(1374), - [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_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1460), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1460), + [anon_sym__BitInt] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = 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_static_assert] = ACTIONS(1460), + [anon_sym__Static_assert] = ACTIONS(1460), + [anon_sym_typeof] = ACTIONS(1460), + [anon_sym_typeof_unqual] = 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(148)] = { - [sym_else_clause] = STATE(197), - [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(1376), - [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_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1464), + [aux_sym_preproc_embed_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_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [aux_sym_primitive_type_token1] = ACTIONS(1464), + [anon_sym__BitInt] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym_static_assert] = ACTIONS(1464), + [anon_sym__Static_assert] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1464), + [anon_sym_typeof_unqual] = 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(149)] = { - [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_else_clause] = STATE(198), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1212), + [aux_sym_preproc_embed_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym___extension__] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym___attribute] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym___inline] = ACTIONS(1212), + [anon_sym___inline__] = ACTIONS(1212), + [anon_sym___forceinline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym___thread] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [anon_sym__Nonnull] = ACTIONS(1212), + [anon_sym_alignas] = ACTIONS(1212), + [anon_sym__Alignas] = ACTIONS(1212), + [aux_sym_primitive_type_token1] = ACTIONS(1212), + [anon_sym__BitInt] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym___try] = ACTIONS(1212), + [anon_sym___leave] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym___alignof__] = ACTIONS(1212), + [anon_sym___alignof] = ACTIONS(1212), + [anon_sym__alignof] = ACTIONS(1212), + [anon_sym_alignof] = ACTIONS(1212), + [anon_sym__Alignof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym_static_assert] = ACTIONS(1212), + [anon_sym__Static_assert] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_typeof_unqual] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [anon_sym___asm] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, [STATE(150)] = { - [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_else_clause] = STATE(213), + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1212), + [aux_sym_preproc_embed_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token2] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym___extension__] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym___attribute] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym___inline] = ACTIONS(1212), + [anon_sym___inline__] = ACTIONS(1212), + [anon_sym___forceinline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym___thread] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [anon_sym__Nonnull] = ACTIONS(1212), + [anon_sym_alignas] = ACTIONS(1212), + [anon_sym__Alignas] = ACTIONS(1212), + [aux_sym_primitive_type_token1] = ACTIONS(1212), + [anon_sym__BitInt] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym___try] = ACTIONS(1212), + [anon_sym___leave] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym___alignof__] = ACTIONS(1212), + [anon_sym___alignof] = ACTIONS(1212), + [anon_sym__alignof] = ACTIONS(1212), + [anon_sym_alignof] = ACTIONS(1212), + [anon_sym__Alignof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym_static_assert] = ACTIONS(1212), + [anon_sym__Static_assert] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_typeof_unqual] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [anon_sym___asm] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, [STATE(151)] = { - [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_else_clause] = STATE(240), + [sym_identifier] = ACTIONS(1212), + [aux_sym_preproc_include_token1] = ACTIONS(1212), + [aux_sym_preproc_def_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1212), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1212), + [aux_sym_preproc_embed_token1] = ACTIONS(1212), + [aux_sym_preproc_if_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1212), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1212), + [sym_preproc_directive] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym___extension__] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym___attribute] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym___cdecl] = ACTIONS(1212), + [anon_sym___clrcall] = ACTIONS(1212), + [anon_sym___stdcall] = ACTIONS(1212), + [anon_sym___fastcall] = ACTIONS(1212), + [anon_sym___thiscall] = ACTIONS(1212), + [anon_sym___vectorcall] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym___inline] = ACTIONS(1212), + [anon_sym___inline__] = ACTIONS(1212), + [anon_sym___forceinline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym___thread] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [anon_sym__Nonnull] = ACTIONS(1212), + [anon_sym_alignas] = ACTIONS(1212), + [anon_sym__Alignas] = ACTIONS(1212), + [aux_sym_primitive_type_token1] = ACTIONS(1212), + [anon_sym__BitInt] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_case] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym___try] = ACTIONS(1212), + [anon_sym___leave] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym___alignof__] = ACTIONS(1212), + [anon_sym___alignof] = ACTIONS(1212), + [anon_sym__alignof] = ACTIONS(1212), + [anon_sym_alignof] = ACTIONS(1212), + [anon_sym__Alignof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym_static_assert] = ACTIONS(1212), + [anon_sym__Static_assert] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_typeof_unqual] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [anon_sym___asm] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, [STATE(152)] = { - [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_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1342), + [aux_sym_preproc_embed_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___attribute] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym__Nonnull] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [aux_sym_primitive_type_token1] = ACTIONS(1342), + [anon_sym__BitInt] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym_static_assert] = ACTIONS(1342), + [anon_sym__Static_assert] = ACTIONS(1342), + [anon_sym_typeof] = ACTIONS(1342), + [anon_sym_typeof_unqual] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [anon_sym___asm] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, [STATE(153)] = { - [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_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1226), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1226), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1226), + [anon_sym__Static_assert] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_typeof_unqual] = 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), }, [STATE(154)] = { - [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_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1230), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1230), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1230), + [anon_sym__Static_assert] = ACTIONS(1230), + [anon_sym_typeof] = ACTIONS(1230), + [anon_sym_typeof_unqual] = 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), }, [STATE(155)] = { - [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), - }, - [STATE(156)] = { - [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), - }, - [STATE(157)] = { [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_errwarn_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1234), + [aux_sym_preproc_embed_token1] = ACTIONS(1234), [aux_sym_preproc_if_token1] = ACTIONS(1234), [aux_sym_preproc_ifdef_token1] = ACTIONS(1234), [aux_sym_preproc_ifdef_token2] = ACTIONS(1234), @@ -33280,7 +35296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1234), [anon_sym_alignas] = ACTIONS(1234), [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), + [aux_sym_primitive_type_token1] = ACTIONS(1234), + [anon_sym__BitInt] = ACTIONS(1234), [anon_sym_enum] = ACTIONS(1234), [anon_sym_struct] = ACTIONS(1234), [anon_sym_union] = ACTIONS(1234), @@ -33307,6 +35324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1234), [anon_sym__Alignof] = ACTIONS(1234), [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym_static_assert] = ACTIONS(1234), + [anon_sym__Static_assert] = ACTIONS(1234), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_typeof_unqual] = ACTIONS(1234), [anon_sym__Generic] = ACTIONS(1234), [anon_sym_asm] = ACTIONS(1234), [anon_sym___asm__] = ACTIONS(1234), @@ -33328,423 +35349,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, - [STATE(158)] = { - [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), - }, - [STATE(159)] = { - [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), - }, - [STATE(160)] = { - [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), - }, - [STATE(161)] = { - [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), - }, - [STATE(162)] = { - [ts_builtin_sym_end] = ACTIONS(1240), + [STATE(156)] = { [sym_identifier] = ACTIONS(1238), [aux_sym_preproc_include_token1] = ACTIONS(1238), [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1238), + [aux_sym_preproc_embed_token1] = ACTIONS(1238), [aux_sym_preproc_if_token1] = ACTIONS(1238), [aux_sym_preproc_ifdef_token1] = ACTIONS(1238), [aux_sym_preproc_ifdef_token2] = ACTIONS(1238), @@ -33771,6 +35382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -33795,7 +35407,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1238), [anon_sym_alignas] = ACTIONS(1238), [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), + [aux_sym_primitive_type_token1] = ACTIONS(1238), + [anon_sym__BitInt] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1238), [anon_sym_struct] = ACTIONS(1238), [anon_sym_union] = ACTIONS(1238), @@ -33822,6 +35435,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1238), [anon_sym__Alignof] = ACTIONS(1238), [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym_static_assert] = ACTIONS(1238), + [anon_sym__Static_assert] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_typeof_unqual] = ACTIONS(1238), [anon_sym__Generic] = ACTIONS(1238), [anon_sym_asm] = ACTIONS(1238), [anon_sym___asm__] = ACTIONS(1238), @@ -33843,422 +35460,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [STATE(163)] = { - [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), - }, - [STATE(164)] = { - [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), - }, - [STATE(165)] = { - [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), - }, - [STATE(166)] = { - [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), - }, - [STATE(167)] = { + [STATE(157)] = { [sym_identifier] = ACTIONS(1242), [aux_sym_preproc_include_token1] = ACTIONS(1242), [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1242), + [aux_sym_preproc_embed_token1] = ACTIONS(1242), [aux_sym_preproc_if_token1] = ACTIONS(1242), [aux_sym_preproc_ifdef_token1] = ACTIONS(1242), [aux_sym_preproc_ifdef_token2] = ACTIONS(1242), @@ -34310,7 +35518,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1242), [anon_sym_alignas] = ACTIONS(1242), [anon_sym__Alignas] = ACTIONS(1242), - [sym_primitive_type] = ACTIONS(1242), + [aux_sym_primitive_type_token1] = ACTIONS(1242), + [anon_sym__BitInt] = ACTIONS(1242), [anon_sym_enum] = ACTIONS(1242), [anon_sym_struct] = ACTIONS(1242), [anon_sym_union] = ACTIONS(1242), @@ -34337,6 +35546,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1242), [anon_sym__Alignof] = ACTIONS(1242), [anon_sym_offsetof] = ACTIONS(1242), + [anon_sym_static_assert] = ACTIONS(1242), + [anon_sym__Static_assert] = ACTIONS(1242), + [anon_sym_typeof] = ACTIONS(1242), + [anon_sym_typeof_unqual] = ACTIONS(1242), [anon_sym__Generic] = ACTIONS(1242), [anon_sym_asm] = ACTIONS(1242), [anon_sym___asm__] = ACTIONS(1242), @@ -34358,11 +35571,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1242), [sym_comment] = ACTIONS(3), }, - [STATE(168)] = { - [ts_builtin_sym_end] = ACTIONS(1248), + [STATE(158)] = { [sym_identifier] = ACTIONS(1246), [aux_sym_preproc_include_token1] = ACTIONS(1246), [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1246), + [aux_sym_preproc_embed_token1] = ACTIONS(1246), [aux_sym_preproc_if_token1] = ACTIONS(1246), [aux_sym_preproc_ifdef_token1] = ACTIONS(1246), [aux_sym_preproc_ifdef_token2] = ACTIONS(1246), @@ -34389,6 +35604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -34413,7 +35629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1246), [anon_sym_alignas] = ACTIONS(1246), [anon_sym__Alignas] = ACTIONS(1246), - [sym_primitive_type] = ACTIONS(1246), + [aux_sym_primitive_type_token1] = ACTIONS(1246), + [anon_sym__BitInt] = ACTIONS(1246), [anon_sym_enum] = ACTIONS(1246), [anon_sym_struct] = ACTIONS(1246), [anon_sym_union] = ACTIONS(1246), @@ -34440,6 +35657,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1246), [anon_sym__Alignof] = ACTIONS(1246), [anon_sym_offsetof] = ACTIONS(1246), + [anon_sym_static_assert] = ACTIONS(1246), + [anon_sym__Static_assert] = ACTIONS(1246), + [anon_sym_typeof] = ACTIONS(1246), + [anon_sym_typeof_unqual] = ACTIONS(1246), [anon_sym__Generic] = ACTIONS(1246), [anon_sym_asm] = ACTIONS(1246), [anon_sym___asm__] = ACTIONS(1246), @@ -34461,526 +35682,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1246), [sym_comment] = ACTIONS(3), }, - [STATE(169)] = { - [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_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), - }, - [STATE(170)] = { - [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), - }, - [STATE(171)] = { - [ts_builtin_sym_end] = ACTIONS(1232), - [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_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), - }, - [STATE(172)] = { - [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), - }, - [STATE(173)] = { - [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), + [STATE(159)] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1334), + [aux_sym_preproc_embed_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___attribute] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym__Nonnull] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [aux_sym_primitive_type_token1] = ACTIONS(1334), + [anon_sym__BitInt] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym_static_assert] = ACTIONS(1334), + [anon_sym__Static_assert] = ACTIONS(1334), + [anon_sym_typeof] = ACTIONS(1334), + [anon_sym_typeof_unqual] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [anon_sym___asm] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [STATE(174)] = { + [STATE(160)] = { [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_errwarn_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1258), + [aux_sym_preproc_embed_token1] = ACTIONS(1258), [aux_sym_preproc_if_token1] = ACTIONS(1258), [aux_sym_preproc_ifdef_token1] = ACTIONS(1258), [aux_sym_preproc_ifdef_token2] = ACTIONS(1258), @@ -35031,7 +35851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1258), [anon_sym_alignas] = ACTIONS(1258), [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), + [aux_sym_primitive_type_token1] = ACTIONS(1258), + [anon_sym__BitInt] = ACTIONS(1258), [anon_sym_enum] = ACTIONS(1258), [anon_sym_struct] = ACTIONS(1258), [anon_sym_union] = ACTIONS(1258), @@ -35058,6 +35879,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1258), [anon_sym__Alignof] = ACTIONS(1258), [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym_static_assert] = ACTIONS(1258), + [anon_sym__Static_assert] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_typeof_unqual] = ACTIONS(1258), [anon_sym__Generic] = ACTIONS(1258), [anon_sym_asm] = ACTIONS(1258), [anon_sym___asm__] = ACTIONS(1258), @@ -35079,1042 +35904,569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, - [STATE(175)] = { - [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), - }, - [STATE(176)] = { - [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), - }, - [STATE(177)] = { - [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), - }, - [STATE(178)] = { - [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), + [STATE(161)] = { + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1262), + [aux_sym_preproc_embed_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(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [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(1264), + [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(1264), + [anon_sym_RBRACE] = ACTIONS(1264), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1262), + [anon_sym__BitInt] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = 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(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [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_static_assert] = ACTIONS(1262), + [anon_sym__Static_assert] = ACTIONS(1262), + [anon_sym_typeof] = ACTIONS(1262), + [anon_sym_typeof_unqual] = 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(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, - [STATE(179)] = { - [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), + [STATE(162)] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1218), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1218), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1218), + [anon_sym__Static_assert] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1218), + [anon_sym_typeof_unqual] = 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), }, - [STATE(180)] = { - [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), - }, - [STATE(181)] = { - [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), + [STATE(163)] = { + [ts_builtin_sym_end] = ACTIONS(1268), + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1266), + [aux_sym_preproc_embed_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym___attribute] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [anon_sym__Nonnull] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = ACTIONS(1266), + [aux_sym_primitive_type_token1] = ACTIONS(1266), + [anon_sym__BitInt] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym_static_assert] = ACTIONS(1266), + [anon_sym__Static_assert] = ACTIONS(1266), + [anon_sym_typeof] = ACTIONS(1266), + [anon_sym_typeof_unqual] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [anon_sym___asm] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [STATE(182)] = { - [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), + [STATE(164)] = { + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1294), + [aux_sym_preproc_embed_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym___attribute] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [anon_sym__Nonnull] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = ACTIONS(1294), + [aux_sym_primitive_type_token1] = ACTIONS(1294), + [anon_sym__BitInt] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym__Static_assert] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(1294), + [anon_sym_typeof_unqual] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [anon_sym___asm] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(3), }, - [STATE(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_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), + [STATE(165)] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1272), + [aux_sym_preproc_embed_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(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [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(1270), + [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(1270), + [anon_sym_RBRACE] = ACTIONS(1270), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1272), + [anon_sym__BitInt] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = 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(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [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_static_assert] = ACTIONS(1272), + [anon_sym__Static_assert] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof_unqual] = 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(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(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [STATE(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), - }, - [STATE(185)] = { + [STATE(166)] = { [sym_identifier] = ACTIONS(1254), [aux_sym_preproc_include_token1] = ACTIONS(1254), [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_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), @@ -36140,6 +36492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -36164,7 +36517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1254), [anon_sym_alignas] = ACTIONS(1254), [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = ACTIONS(1254), [anon_sym_enum] = ACTIONS(1254), [anon_sym_struct] = ACTIONS(1254), [anon_sym_union] = ACTIONS(1254), @@ -36191,6 +36545,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1254), [anon_sym__Alignof] = ACTIONS(1254), [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = ACTIONS(1254), [anon_sym__Generic] = ACTIONS(1254), [anon_sym_asm] = ACTIONS(1254), [anon_sym___asm__] = ACTIONS(1254), @@ -36212,630 +36570,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(3), }, - [STATE(186)] = { - [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), - }, - [STATE(187)] = { - [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), - }, - [STATE(188)] = { - [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), + [STATE(167)] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1334), + [aux_sym_preproc_embed_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___attribute] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym__Nonnull] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [aux_sym_primitive_type_token1] = ACTIONS(1334), + [anon_sym__BitInt] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym_static_assert] = ACTIONS(1334), + [anon_sym__Static_assert] = ACTIONS(1334), + [anon_sym_typeof] = ACTIONS(1334), + [anon_sym_typeof_unqual] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [anon_sym___asm] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [STATE(189)] = { - [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), + [STATE(168)] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = 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), }, - [STATE(190)] = { - [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), + [STATE(169)] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [STATE(191)] = { - [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), + [STATE(170)] = { + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1274), + [aux_sym_preproc_embed_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___attribute] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_RBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = ACTIONS(1274), + [aux_sym_primitive_type_token1] = ACTIONS(1274), + [anon_sym__BitInt] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym_static_assert] = ACTIONS(1274), + [anon_sym__Static_assert] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1274), + [anon_sym_typeof_unqual] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [anon_sym___asm] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [STATE(192)] = { + [STATE(171)] = { [sym_identifier] = ACTIONS(1258), [aux_sym_preproc_include_token1] = ACTIONS(1258), [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1258), + [aux_sym_preproc_embed_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), @@ -36861,6 +37047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -36885,7 +37072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1258), [anon_sym_alignas] = ACTIONS(1258), [anon_sym__Alignas] = ACTIONS(1258), - [sym_primitive_type] = ACTIONS(1258), + [aux_sym_primitive_type_token1] = ACTIONS(1258), + [anon_sym__BitInt] = ACTIONS(1258), [anon_sym_enum] = ACTIONS(1258), [anon_sym_struct] = ACTIONS(1258), [anon_sym_union] = ACTIONS(1258), @@ -36912,6 +37100,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1258), [anon_sym__Alignof] = ACTIONS(1258), [anon_sym_offsetof] = ACTIONS(1258), + [anon_sym_static_assert] = ACTIONS(1258), + [anon_sym__Static_assert] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_typeof_unqual] = ACTIONS(1258), [anon_sym__Generic] = ACTIONS(1258), [anon_sym_asm] = ACTIONS(1258), [anon_sym___asm__] = ACTIONS(1258), @@ -36933,424 +37125,459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1258), [sym_comment] = ACTIONS(3), }, - [STATE(193)] = { - [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), - }, - [STATE(194)] = { - [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), - }, - [STATE(195)] = { - [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), + [STATE(172)] = { + [ts_builtin_sym_end] = ACTIONS(1264), + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1262), + [aux_sym_preproc_embed_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(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [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(1264), + [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(1264), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1262), + [anon_sym__BitInt] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = 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(1264), + [anon_sym_PLUS_PLUS] = ACTIONS(1264), + [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_static_assert] = ACTIONS(1262), + [anon_sym__Static_assert] = ACTIONS(1262), + [anon_sym_typeof] = ACTIONS(1262), + [anon_sym_typeof_unqual] = 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(1264), + [anon_sym_L_SQUOTE] = ACTIONS(1264), + [anon_sym_u_SQUOTE] = ACTIONS(1264), + [anon_sym_U_SQUOTE] = ACTIONS(1264), + [anon_sym_u8_SQUOTE] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_L_DQUOTE] = ACTIONS(1264), + [anon_sym_u_DQUOTE] = ACTIONS(1264), + [anon_sym_U_DQUOTE] = ACTIONS(1264), + [anon_sym_u8_DQUOTE] = ACTIONS(1264), + [anon_sym_DQUOTE] = ACTIONS(1264), + [sym_true] = ACTIONS(1262), + [sym_false] = ACTIONS(1262), + [anon_sym_NULL] = ACTIONS(1262), + [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, - [STATE(196)] = { - [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), + [STATE(173)] = { + [sym_identifier] = ACTIONS(1266), + [aux_sym_preproc_include_token1] = ACTIONS(1266), + [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1266), + [aux_sym_preproc_embed_token1] = ACTIONS(1266), + [aux_sym_preproc_if_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), + [sym_preproc_directive] = ACTIONS(1266), + [anon_sym_LPAREN2] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PLUS] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym___extension__] = ACTIONS(1266), + [anon_sym_typedef] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1266), + [anon_sym___attribute__] = ACTIONS(1266), + [anon_sym___attribute] = ACTIONS(1266), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), + [anon_sym___declspec] = ACTIONS(1266), + [anon_sym___cdecl] = ACTIONS(1266), + [anon_sym___clrcall] = ACTIONS(1266), + [anon_sym___stdcall] = ACTIONS(1266), + [anon_sym___fastcall] = ACTIONS(1266), + [anon_sym___thiscall] = ACTIONS(1266), + [anon_sym___vectorcall] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_signed] = ACTIONS(1266), + [anon_sym_unsigned] = ACTIONS(1266), + [anon_sym_long] = ACTIONS(1266), + [anon_sym_short] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(1266), + [anon_sym_auto] = ACTIONS(1266), + [anon_sym_register] = ACTIONS(1266), + [anon_sym_inline] = ACTIONS(1266), + [anon_sym___inline] = ACTIONS(1266), + [anon_sym___inline__] = ACTIONS(1266), + [anon_sym___forceinline] = ACTIONS(1266), + [anon_sym_thread_local] = ACTIONS(1266), + [anon_sym___thread] = ACTIONS(1266), + [anon_sym_const] = ACTIONS(1266), + [anon_sym_constexpr] = ACTIONS(1266), + [anon_sym_volatile] = ACTIONS(1266), + [anon_sym_restrict] = ACTIONS(1266), + [anon_sym___restrict__] = ACTIONS(1266), + [anon_sym__Atomic] = ACTIONS(1266), + [anon_sym__Noreturn] = ACTIONS(1266), + [anon_sym_noreturn] = ACTIONS(1266), + [anon_sym__Nonnull] = ACTIONS(1266), + [anon_sym_alignas] = ACTIONS(1266), + [anon_sym__Alignas] = ACTIONS(1266), + [aux_sym_primitive_type_token1] = ACTIONS(1266), + [anon_sym__BitInt] = ACTIONS(1266), + [anon_sym_enum] = ACTIONS(1266), + [anon_sym_struct] = ACTIONS(1266), + [anon_sym_union] = ACTIONS(1266), + [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_case] = ACTIONS(1266), + [anon_sym_default] = ACTIONS(1266), + [anon_sym_while] = ACTIONS(1266), + [anon_sym_do] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1266), + [anon_sym_return] = ACTIONS(1266), + [anon_sym_break] = ACTIONS(1266), + [anon_sym_continue] = ACTIONS(1266), + [anon_sym_goto] = ACTIONS(1266), + [anon_sym___try] = ACTIONS(1266), + [anon_sym___leave] = ACTIONS(1266), + [anon_sym_DASH_DASH] = ACTIONS(1268), + [anon_sym_PLUS_PLUS] = ACTIONS(1268), + [anon_sym_sizeof] = ACTIONS(1266), + [anon_sym___alignof__] = ACTIONS(1266), + [anon_sym___alignof] = ACTIONS(1266), + [anon_sym__alignof] = ACTIONS(1266), + [anon_sym_alignof] = ACTIONS(1266), + [anon_sym__Alignof] = ACTIONS(1266), + [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym_static_assert] = ACTIONS(1266), + [anon_sym__Static_assert] = ACTIONS(1266), + [anon_sym_typeof] = ACTIONS(1266), + [anon_sym_typeof_unqual] = ACTIONS(1266), + [anon_sym__Generic] = ACTIONS(1266), + [anon_sym_asm] = ACTIONS(1266), + [anon_sym___asm__] = ACTIONS(1266), + [anon_sym___asm] = ACTIONS(1266), + [sym_number_literal] = ACTIONS(1268), + [anon_sym_L_SQUOTE] = ACTIONS(1268), + [anon_sym_u_SQUOTE] = ACTIONS(1268), + [anon_sym_U_SQUOTE] = ACTIONS(1268), + [anon_sym_u8_SQUOTE] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_L_DQUOTE] = ACTIONS(1268), + [anon_sym_u_DQUOTE] = ACTIONS(1268), + [anon_sym_U_DQUOTE] = ACTIONS(1268), + [anon_sym_u8_DQUOTE] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym_true] = ACTIONS(1266), + [sym_false] = ACTIONS(1266), + [anon_sym_NULL] = ACTIONS(1266), + [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [STATE(197)] = { + [STATE(174)] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1342), + [aux_sym_preproc_embed_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___attribute] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym__Nonnull] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [aux_sym_primitive_type_token1] = ACTIONS(1342), + [anon_sym__BitInt] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym_static_assert] = ACTIONS(1342), + [anon_sym__Static_assert] = ACTIONS(1342), + [anon_sym_typeof] = ACTIONS(1342), + [anon_sym_typeof_unqual] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [anon_sym___asm] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), + [sym_comment] = ACTIONS(3), + }, + [STATE(175)] = { + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1278), + [aux_sym_preproc_embed_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___attribute] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_RBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [aux_sym_primitive_type_token1] = ACTIONS(1278), + [anon_sym__BitInt] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym_static_assert] = ACTIONS(1278), + [anon_sym__Static_assert] = ACTIONS(1278), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_typeof_unqual] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [anon_sym___asm] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [sym_comment] = ACTIONS(3), + }, + [STATE(176)] = { + [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_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_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), @@ -37400,7 +37627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1222), [anon_sym_alignas] = ACTIONS(1222), [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = ACTIONS(1222), [anon_sym_enum] = ACTIONS(1222), [anon_sym_struct] = ACTIONS(1222), [anon_sym_union] = ACTIONS(1222), @@ -37427,6 +37655,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1222), [anon_sym__Alignof] = ACTIONS(1222), [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = ACTIONS(1222), [anon_sym__Generic] = ACTIONS(1222), [anon_sym_asm] = ACTIONS(1222), [anon_sym___asm__] = ACTIONS(1222), @@ -37448,1351 +37680,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, - [STATE(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_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), - }, - [STATE(199)] = { - [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), + [STATE(177)] = { + [sym_identifier] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1282), + [aux_sym_preproc_embed_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___attribute] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_RBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [aux_sym_primitive_type_token1] = ACTIONS(1282), + [anon_sym__BitInt] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym_static_assert] = ACTIONS(1282), + [anon_sym__Static_assert] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1282), + [anon_sym_typeof_unqual] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [anon_sym___asm] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, - [STATE(200)] = { - [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_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), - }, - [STATE(201)] = { - [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), - }, - [STATE(202)] = { - [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), - }, - [STATE(203)] = { - [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), - }, - [STATE(204)] = { - [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), - }, - [STATE(205)] = { - [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), - }, - [STATE(206)] = { - [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), - }, - [STATE(207)] = { - [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), - }, - [STATE(208)] = { - [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), - }, - [STATE(209)] = { - [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), - }, - [STATE(210)] = { - [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), + [STATE(178)] = { + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1230), + [aux_sym_preproc_embed_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_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), + [aux_sym_primitive_type_token1] = ACTIONS(1230), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1230), + [anon_sym__Static_assert] = ACTIONS(1230), + [anon_sym_typeof] = ACTIONS(1230), + [anon_sym_typeof_unqual] = 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), }, - [STATE(211)] = { + [STATE(179)] = { [sym_identifier] = ACTIONS(1234), [aux_sym_preproc_include_token1] = ACTIONS(1234), [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1234), + [aux_sym_preproc_embed_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), @@ -38818,6 +37935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -38842,7 +37960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1234), [anon_sym_alignas] = ACTIONS(1234), [anon_sym__Alignas] = ACTIONS(1234), - [sym_primitive_type] = ACTIONS(1234), + [aux_sym_primitive_type_token1] = ACTIONS(1234), + [anon_sym__BitInt] = ACTIONS(1234), [anon_sym_enum] = ACTIONS(1234), [anon_sym_struct] = ACTIONS(1234), [anon_sym_union] = ACTIONS(1234), @@ -38869,6 +37988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1234), [anon_sym__Alignof] = ACTIONS(1234), [anon_sym_offsetof] = ACTIONS(1234), + [anon_sym_static_assert] = ACTIONS(1234), + [anon_sym__Static_assert] = ACTIONS(1234), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_typeof_unqual] = ACTIONS(1234), [anon_sym__Generic] = ACTIONS(1234), [anon_sym_asm] = ACTIONS(1234), [anon_sym___asm__] = ACTIONS(1234), @@ -38890,115 +38013,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1234), [sym_comment] = ACTIONS(3), }, - [STATE(212)] = { - [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), - }, - [STATE(213)] = { + [STATE(180)] = { + [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_errwarn_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1238), + [aux_sym_preproc_embed_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), @@ -39048,7 +38071,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1238), [anon_sym_alignas] = ACTIONS(1238), [anon_sym__Alignas] = ACTIONS(1238), - [sym_primitive_type] = ACTIONS(1238), + [aux_sym_primitive_type_token1] = ACTIONS(1238), + [anon_sym__BitInt] = ACTIONS(1238), [anon_sym_enum] = ACTIONS(1238), [anon_sym_struct] = ACTIONS(1238), [anon_sym_union] = ACTIONS(1238), @@ -39075,6 +38099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1238), [anon_sym__Alignof] = ACTIONS(1238), [anon_sym_offsetof] = ACTIONS(1238), + [anon_sym_static_assert] = ACTIONS(1238), + [anon_sym__Static_assert] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_typeof_unqual] = ACTIONS(1238), [anon_sym__Generic] = ACTIONS(1238), [anon_sym_asm] = ACTIONS(1238), [anon_sym___asm__] = ACTIONS(1238), @@ -39096,938 +38124,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1238), [sym_comment] = ACTIONS(3), }, - [STATE(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), - }, - [STATE(215)] = { - [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), - }, - [STATE(216)] = { - [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), + [STATE(181)] = { + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1286), + [aux_sym_preproc_embed_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___attribute] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_RBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [aux_sym_primitive_type_token1] = ACTIONS(1286), + [anon_sym__BitInt] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym_static_assert] = ACTIONS(1286), + [anon_sym__Static_assert] = ACTIONS(1286), + [anon_sym_typeof] = ACTIONS(1286), + [anon_sym_typeof_unqual] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [anon_sym___asm] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, - [STATE(217)] = { - [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), + [STATE(182)] = { + [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_errwarn_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1242), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1242), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1242), + [anon_sym__Static_assert] = ACTIONS(1242), + [anon_sym_typeof] = ACTIONS(1242), + [anon_sym_typeof_unqual] = 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), }, - [STATE(218)] = { - [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), + [STATE(183)] = { + [ts_builtin_sym_end] = ACTIONS(1288), + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1286), + [aux_sym_preproc_embed_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___attribute] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [aux_sym_primitive_type_token1] = ACTIONS(1286), + [anon_sym__BitInt] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym_static_assert] = ACTIONS(1286), + [anon_sym__Static_assert] = ACTIONS(1286), + [anon_sym_typeof] = ACTIONS(1286), + [anon_sym_typeof_unqual] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [anon_sym___asm] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, - [STATE(219)] = { - [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), + [STATE(184)] = { + [ts_builtin_sym_end] = ACTIONS(1292), + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1290), + [aux_sym_preproc_embed_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___attribute] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [aux_sym_primitive_type_token1] = ACTIONS(1290), + [anon_sym__BitInt] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym_static_assert] = ACTIONS(1290), + [anon_sym__Static_assert] = ACTIONS(1290), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_typeof_unqual] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [anon_sym___asm] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(3), }, - [STATE(220)] = { - [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), + [STATE(185)] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1298), + [aux_sym_preproc_embed_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [aux_sym_primitive_type_token1] = ACTIONS(1298), + [anon_sym__BitInt] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym_static_assert] = ACTIONS(1298), + [anon_sym__Static_assert] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof_unqual] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [STATE(221)] = { - [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), + [STATE(186)] = { + [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_errwarn_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1246), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1246), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1246), + [anon_sym__Static_assert] = ACTIONS(1246), + [anon_sym_typeof] = ACTIONS(1246), + [anon_sym_typeof_unqual] = 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), }, - [STATE(222)] = { - [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), + [STATE(187)] = { + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1250), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1250), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1250), + [anon_sym__Static_assert] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1250), + [anon_sym_typeof_unqual] = 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), }, - [STATE(223)] = { + [STATE(188)] = { [ts_builtin_sym_end] = ACTIONS(1220), [sym_identifier] = ACTIONS(1218), [aux_sym_preproc_include_token1] = ACTIONS(1218), [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1218), + [aux_sym_preproc_embed_token1] = ACTIONS(1218), [aux_sym_preproc_if_token1] = ACTIONS(1218), [aux_sym_preproc_ifdef_token1] = ACTIONS(1218), [aux_sym_preproc_ifdef_token2] = ACTIONS(1218), @@ -40078,7 +38959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1218), [anon_sym_alignas] = ACTIONS(1218), [anon_sym__Alignas] = ACTIONS(1218), - [sym_primitive_type] = ACTIONS(1218), + [aux_sym_primitive_type_token1] = ACTIONS(1218), + [anon_sym__BitInt] = ACTIONS(1218), [anon_sym_enum] = ACTIONS(1218), [anon_sym_struct] = ACTIONS(1218), [anon_sym_union] = ACTIONS(1218), @@ -40105,6 +38987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1218), [anon_sym__Alignof] = ACTIONS(1218), [anon_sym_offsetof] = ACTIONS(1218), + [anon_sym_static_assert] = ACTIONS(1218), + [anon_sym__Static_assert] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1218), + [anon_sym_typeof_unqual] = ACTIONS(1218), [anon_sym__Generic] = ACTIONS(1218), [anon_sym_asm] = ACTIONS(1218), [anon_sym___asm__] = ACTIONS(1218), @@ -40126,10 +39012,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1218), [sym_comment] = ACTIONS(3), }, - [STATE(224)] = { + [STATE(189)] = { + [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_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(190)] = { + [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_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_token1] = ACTIONS(1222), [aux_sym_preproc_if_token1] = ACTIONS(1222), [aux_sym_preproc_ifdef_token1] = ACTIONS(1222), [aux_sym_preproc_ifdef_token2] = ACTIONS(1222), @@ -40156,7 +39157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -40181,7 +39181,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1222), [anon_sym_alignas] = ACTIONS(1222), [anon_sym__Alignas] = ACTIONS(1222), - [sym_primitive_type] = ACTIONS(1222), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = ACTIONS(1222), [anon_sym_enum] = ACTIONS(1222), [anon_sym_struct] = ACTIONS(1222), [anon_sym_union] = ACTIONS(1222), @@ -40208,6 +39209,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1222), [anon_sym__Alignof] = ACTIONS(1222), [anon_sym_offsetof] = ACTIONS(1222), + [anon_sym_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = ACTIONS(1222), [anon_sym__Generic] = ACTIONS(1222), [anon_sym_asm] = ACTIONS(1222), [anon_sym___asm__] = ACTIONS(1222), @@ -40229,2379 +39234,1457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1222), [sym_comment] = ACTIONS(3), }, - [STATE(225)] = { - [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), + [STATE(191)] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [STATE(226)] = { - [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), + [STATE(192)] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1302), + [aux_sym_preproc_embed_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___attribute] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym__Nonnull] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = ACTIONS(1302), + [aux_sym_primitive_type_token1] = ACTIONS(1302), + [anon_sym__BitInt] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym_static_assert] = ACTIONS(1302), + [anon_sym__Static_assert] = ACTIONS(1302), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_typeof_unqual] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [anon_sym___asm] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [STATE(227)] = { - [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), - }, - [STATE(228)] = { - [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), + [STATE(193)] = { + [sym_identifier] = ACTIONS(1294), + [aux_sym_preproc_include_token1] = ACTIONS(1294), + [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1294), + [aux_sym_preproc_embed_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token1] = ACTIONS(1294), + [aux_sym_preproc_if_token2] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), + [sym_preproc_directive] = ACTIONS(1294), + [anon_sym_LPAREN2] = ACTIONS(1296), + [anon_sym_BANG] = ACTIONS(1296), + [anon_sym_TILDE] = ACTIONS(1296), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1296), + [anon_sym_AMP] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1294), + [anon_sym_typedef] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym___attribute__] = ACTIONS(1294), + [anon_sym___attribute] = ACTIONS(1294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), + [anon_sym___declspec] = ACTIONS(1294), + [anon_sym___cdecl] = ACTIONS(1294), + [anon_sym___clrcall] = ACTIONS(1294), + [anon_sym___stdcall] = ACTIONS(1294), + [anon_sym___fastcall] = ACTIONS(1294), + [anon_sym___thiscall] = ACTIONS(1294), + [anon_sym___vectorcall] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_signed] = ACTIONS(1294), + [anon_sym_unsigned] = ACTIONS(1294), + [anon_sym_long] = ACTIONS(1294), + [anon_sym_short] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_auto] = ACTIONS(1294), + [anon_sym_register] = ACTIONS(1294), + [anon_sym_inline] = ACTIONS(1294), + [anon_sym___inline] = ACTIONS(1294), + [anon_sym___inline__] = ACTIONS(1294), + [anon_sym___forceinline] = ACTIONS(1294), + [anon_sym_thread_local] = ACTIONS(1294), + [anon_sym___thread] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_constexpr] = ACTIONS(1294), + [anon_sym_volatile] = ACTIONS(1294), + [anon_sym_restrict] = ACTIONS(1294), + [anon_sym___restrict__] = ACTIONS(1294), + [anon_sym__Atomic] = ACTIONS(1294), + [anon_sym__Noreturn] = ACTIONS(1294), + [anon_sym_noreturn] = ACTIONS(1294), + [anon_sym__Nonnull] = ACTIONS(1294), + [anon_sym_alignas] = ACTIONS(1294), + [anon_sym__Alignas] = ACTIONS(1294), + [aux_sym_primitive_type_token1] = ACTIONS(1294), + [anon_sym__BitInt] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), + [anon_sym_switch] = ACTIONS(1294), + [anon_sym_case] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_do] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1296), + [anon_sym_PLUS_PLUS] = ACTIONS(1296), + [anon_sym_sizeof] = ACTIONS(1294), + [anon_sym___alignof__] = ACTIONS(1294), + [anon_sym___alignof] = ACTIONS(1294), + [anon_sym__alignof] = ACTIONS(1294), + [anon_sym_alignof] = ACTIONS(1294), + [anon_sym__Alignof] = ACTIONS(1294), + [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym__Static_assert] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(1294), + [anon_sym_typeof_unqual] = ACTIONS(1294), + [anon_sym__Generic] = ACTIONS(1294), + [anon_sym_asm] = ACTIONS(1294), + [anon_sym___asm__] = ACTIONS(1294), + [anon_sym___asm] = ACTIONS(1294), + [sym_number_literal] = ACTIONS(1296), + [anon_sym_L_SQUOTE] = ACTIONS(1296), + [anon_sym_u_SQUOTE] = ACTIONS(1296), + [anon_sym_U_SQUOTE] = ACTIONS(1296), + [anon_sym_u8_SQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_L_DQUOTE] = ACTIONS(1296), + [anon_sym_u_DQUOTE] = ACTIONS(1296), + [anon_sym_U_DQUOTE] = ACTIONS(1296), + [anon_sym_u8_DQUOTE] = ACTIONS(1296), + [anon_sym_DQUOTE] = ACTIONS(1296), + [sym_true] = ACTIONS(1294), + [sym_false] = ACTIONS(1294), + [anon_sym_NULL] = ACTIONS(1294), + [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(3), }, - [STATE(229)] = { - [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), + [STATE(194)] = { + [sym_identifier] = ACTIONS(1272), + [aux_sym_preproc_include_token1] = ACTIONS(1272), + [aux_sym_preproc_def_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1272), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1272), + [aux_sym_preproc_embed_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(1270), + [anon_sym_BANG] = ACTIONS(1270), + [anon_sym_TILDE] = ACTIONS(1270), + [anon_sym_DASH] = ACTIONS(1272), + [anon_sym_PLUS] = ACTIONS(1272), + [anon_sym_STAR] = ACTIONS(1270), + [anon_sym_AMP] = ACTIONS(1270), + [anon_sym_SEMI] = ACTIONS(1270), + [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(1270), + [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(1270), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1272), + [anon_sym__BitInt] = ACTIONS(1272), + [anon_sym_enum] = ACTIONS(1272), + [anon_sym_struct] = ACTIONS(1272), + [anon_sym_union] = ACTIONS(1272), + [anon_sym_if] = ACTIONS(1272), + [anon_sym_else] = 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(1270), + [anon_sym_PLUS_PLUS] = ACTIONS(1270), + [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_static_assert] = ACTIONS(1272), + [anon_sym__Static_assert] = ACTIONS(1272), + [anon_sym_typeof] = ACTIONS(1272), + [anon_sym_typeof_unqual] = 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(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(1272), + [sym_false] = ACTIONS(1272), + [anon_sym_NULL] = ACTIONS(1272), + [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [STATE(230)] = { - [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), + [STATE(195)] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1334), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1334), + [aux_sym_preproc_embed_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym___attribute] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [anon_sym__Nonnull] = ACTIONS(1334), + [anon_sym_alignas] = ACTIONS(1334), + [anon_sym__Alignas] = ACTIONS(1334), + [aux_sym_primitive_type_token1] = ACTIONS(1334), + [anon_sym__BitInt] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym_static_assert] = ACTIONS(1334), + [anon_sym__Static_assert] = ACTIONS(1334), + [anon_sym_typeof] = ACTIONS(1334), + [anon_sym_typeof_unqual] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [anon_sym___asm] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [STATE(231)] = { - [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), - }, - [STATE(232)] = { - [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), - }, - [STATE(233)] = { - [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), - }, - [STATE(234)] = { - [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), - }, - [STATE(235)] = { - [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), - }, - [STATE(236)] = { - [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), - }, - [STATE(237)] = { - [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), - }, - [STATE(238)] = { - [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), - }, - [STATE(239)] = { - [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), - }, - [STATE(240)] = { - [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), - }, - [STATE(241)] = { - [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), - }, - [STATE(242)] = { - [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), + [STATE(196)] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1306), + [aux_sym_preproc_embed_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___attribute] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym__Nonnull] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [aux_sym_primitive_type_token1] = ACTIONS(1306), + [anon_sym__BitInt] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym_static_assert] = ACTIONS(1306), + [anon_sym__Static_assert] = ACTIONS(1306), + [anon_sym_typeof] = ACTIONS(1306), + [anon_sym_typeof_unqual] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [anon_sym___asm] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [STATE(243)] = { - [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), + [STATE(197)] = { + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1274), + [aux_sym_preproc_embed_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token2] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___attribute] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = ACTIONS(1274), + [aux_sym_primitive_type_token1] = ACTIONS(1274), + [anon_sym__BitInt] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym_static_assert] = ACTIONS(1274), + [anon_sym__Static_assert] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1274), + [anon_sym_typeof_unqual] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [anon_sym___asm] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), [sym_comment] = ACTIONS(3), }, - [STATE(244)] = { - [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), + [STATE(198)] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1330), + [aux_sym_preproc_embed_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___attribute] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym__Nonnull] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [aux_sym_primitive_type_token1] = ACTIONS(1330), + [anon_sym__BitInt] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym_static_assert] = ACTIONS(1330), + [anon_sym__Static_assert] = ACTIONS(1330), + [anon_sym_typeof] = ACTIONS(1330), + [anon_sym_typeof_unqual] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [anon_sym___asm] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [STATE(245)] = { - [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), + [STATE(199)] = { + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1278), + [aux_sym_preproc_embed_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token2] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___attribute] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [aux_sym_primitive_type_token1] = ACTIONS(1278), + [anon_sym__BitInt] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym_static_assert] = ACTIONS(1278), + [anon_sym__Static_assert] = ACTIONS(1278), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_typeof_unqual] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [anon_sym___asm] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), [sym_comment] = ACTIONS(3), }, - [STATE(246)] = { - [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), - [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), + [STATE(200)] = { + [sym_identifier] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1282), + [aux_sym_preproc_embed_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token2] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___attribute] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [aux_sym_primitive_type_token1] = ACTIONS(1282), + [anon_sym__BitInt] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym_static_assert] = ACTIONS(1282), + [anon_sym__Static_assert] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1282), + [anon_sym_typeof_unqual] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [anon_sym___asm] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, - [STATE(247)] = { - [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), + [STATE(201)] = { + [sym_identifier] = ACTIONS(1286), + [aux_sym_preproc_include_token1] = ACTIONS(1286), + [aux_sym_preproc_def_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1286), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1286), + [aux_sym_preproc_embed_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token1] = ACTIONS(1286), + [aux_sym_preproc_if_token2] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), + [sym_preproc_directive] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(1288), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_TILDE] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PLUS] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(1286), + [anon_sym_typedef] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1286), + [anon_sym___attribute__] = ACTIONS(1286), + [anon_sym___attribute] = ACTIONS(1286), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), + [anon_sym___declspec] = ACTIONS(1286), + [anon_sym___cdecl] = ACTIONS(1286), + [anon_sym___clrcall] = ACTIONS(1286), + [anon_sym___stdcall] = ACTIONS(1286), + [anon_sym___fastcall] = ACTIONS(1286), + [anon_sym___thiscall] = ACTIONS(1286), + [anon_sym___vectorcall] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1288), + [anon_sym_signed] = ACTIONS(1286), + [anon_sym_unsigned] = ACTIONS(1286), + [anon_sym_long] = ACTIONS(1286), + [anon_sym_short] = ACTIONS(1286), + [anon_sym_static] = ACTIONS(1286), + [anon_sym_auto] = ACTIONS(1286), + [anon_sym_register] = ACTIONS(1286), + [anon_sym_inline] = ACTIONS(1286), + [anon_sym___inline] = ACTIONS(1286), + [anon_sym___inline__] = ACTIONS(1286), + [anon_sym___forceinline] = ACTIONS(1286), + [anon_sym_thread_local] = ACTIONS(1286), + [anon_sym___thread] = ACTIONS(1286), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_constexpr] = ACTIONS(1286), + [anon_sym_volatile] = ACTIONS(1286), + [anon_sym_restrict] = ACTIONS(1286), + [anon_sym___restrict__] = ACTIONS(1286), + [anon_sym__Atomic] = ACTIONS(1286), + [anon_sym__Noreturn] = ACTIONS(1286), + [anon_sym_noreturn] = ACTIONS(1286), + [anon_sym__Nonnull] = ACTIONS(1286), + [anon_sym_alignas] = ACTIONS(1286), + [anon_sym__Alignas] = ACTIONS(1286), + [aux_sym_primitive_type_token1] = ACTIONS(1286), + [anon_sym__BitInt] = ACTIONS(1286), + [anon_sym_enum] = ACTIONS(1286), + [anon_sym_struct] = ACTIONS(1286), + [anon_sym_union] = ACTIONS(1286), + [anon_sym_if] = ACTIONS(1286), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_switch] = ACTIONS(1286), + [anon_sym_case] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1286), + [anon_sym_while] = ACTIONS(1286), + [anon_sym_do] = ACTIONS(1286), + [anon_sym_for] = ACTIONS(1286), + [anon_sym_return] = ACTIONS(1286), + [anon_sym_break] = ACTIONS(1286), + [anon_sym_continue] = ACTIONS(1286), + [anon_sym_goto] = ACTIONS(1286), + [anon_sym___try] = ACTIONS(1286), + [anon_sym___leave] = ACTIONS(1286), + [anon_sym_DASH_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1288), + [anon_sym_sizeof] = ACTIONS(1286), + [anon_sym___alignof__] = ACTIONS(1286), + [anon_sym___alignof] = ACTIONS(1286), + [anon_sym__alignof] = ACTIONS(1286), + [anon_sym_alignof] = ACTIONS(1286), + [anon_sym__Alignof] = ACTIONS(1286), + [anon_sym_offsetof] = ACTIONS(1286), + [anon_sym_static_assert] = ACTIONS(1286), + [anon_sym__Static_assert] = ACTIONS(1286), + [anon_sym_typeof] = ACTIONS(1286), + [anon_sym_typeof_unqual] = ACTIONS(1286), + [anon_sym__Generic] = ACTIONS(1286), + [anon_sym_asm] = ACTIONS(1286), + [anon_sym___asm__] = ACTIONS(1286), + [anon_sym___asm] = ACTIONS(1286), + [sym_number_literal] = ACTIONS(1288), + [anon_sym_L_SQUOTE] = ACTIONS(1288), + [anon_sym_u_SQUOTE] = ACTIONS(1288), + [anon_sym_U_SQUOTE] = ACTIONS(1288), + [anon_sym_u8_SQUOTE] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_L_DQUOTE] = ACTIONS(1288), + [anon_sym_u_DQUOTE] = ACTIONS(1288), + [anon_sym_U_DQUOTE] = ACTIONS(1288), + [anon_sym_u8_DQUOTE] = ACTIONS(1288), + [anon_sym_DQUOTE] = ACTIONS(1288), + [sym_true] = ACTIONS(1286), + [sym_false] = ACTIONS(1286), + [anon_sym_NULL] = ACTIONS(1286), + [anon_sym_nullptr] = ACTIONS(1286), [sym_comment] = ACTIONS(3), }, - [STATE(248)] = { + [STATE(202)] = { + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1290), + [aux_sym_preproc_embed_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token2] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___attribute] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [aux_sym_primitive_type_token1] = ACTIONS(1290), + [anon_sym__BitInt] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym_static_assert] = ACTIONS(1290), + [anon_sym__Static_assert] = ACTIONS(1290), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_typeof_unqual] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [anon_sym___asm] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), + [sym_comment] = ACTIONS(3), + }, + [STATE(203)] = { + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1298), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1298), + [aux_sym_preproc_embed_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token2] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym___attribute] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [anon_sym__Nonnull] = ACTIONS(1298), + [anon_sym_alignas] = ACTIONS(1298), + [anon_sym__Alignas] = ACTIONS(1298), + [aux_sym_primitive_type_token1] = ACTIONS(1298), + [anon_sym__BitInt] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym_static_assert] = ACTIONS(1298), + [anon_sym__Static_assert] = ACTIONS(1298), + [anon_sym_typeof] = ACTIONS(1298), + [anon_sym_typeof_unqual] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [anon_sym___asm] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), + [sym_comment] = ACTIONS(3), + }, + [STATE(204)] = { + [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_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_token1] = ACTIONS(1254), [aux_sym_preproc_if_token1] = ACTIONS(1254), [aux_sym_preproc_ifdef_token1] = ACTIONS(1254), [aux_sym_preproc_ifdef_token2] = ACTIONS(1254), @@ -42628,7 +40711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -42653,7 +40735,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1254), [anon_sym_alignas] = ACTIONS(1254), [anon_sym__Alignas] = ACTIONS(1254), - [sym_primitive_type] = ACTIONS(1254), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = ACTIONS(1254), [anon_sym_enum] = ACTIONS(1254), [anon_sym_struct] = ACTIONS(1254), [anon_sym_union] = ACTIONS(1254), @@ -42680,6 +40763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1254), [anon_sym__Alignof] = ACTIONS(1254), [anon_sym_offsetof] = ACTIONS(1254), + [anon_sym_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = ACTIONS(1254), [anon_sym__Generic] = ACTIONS(1254), [anon_sym_asm] = ACTIONS(1254), [anon_sym___asm__] = ACTIONS(1254), @@ -42701,1919 +40788,1969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1254), [sym_comment] = ACTIONS(3), }, - [STATE(249)] = { - [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), + [STATE(205)] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1310), + [aux_sym_preproc_embed_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym__Nonnull] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [aux_sym_primitive_type_token1] = ACTIONS(1310), + [anon_sym__BitInt] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym_static_assert] = ACTIONS(1310), + [anon_sym__Static_assert] = ACTIONS(1310), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_typeof_unqual] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [anon_sym___asm] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [STATE(250)] = { - [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), + [STATE(206)] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1314), + [aux_sym_preproc_embed_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = ACTIONS(1314), + [aux_sym_primitive_type_token1] = ACTIONS(1314), + [anon_sym__BitInt] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym__Static_assert] = ACTIONS(1314), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_typeof_unqual] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [STATE(251)] = { - [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), + [STATE(207)] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1302), + [aux_sym_preproc_embed_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym___attribute] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [anon_sym__Nonnull] = ACTIONS(1302), + [anon_sym_alignas] = ACTIONS(1302), + [anon_sym__Alignas] = ACTIONS(1302), + [aux_sym_primitive_type_token1] = ACTIONS(1302), + [anon_sym__BitInt] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym_static_assert] = ACTIONS(1302), + [anon_sym__Static_assert] = ACTIONS(1302), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_typeof_unqual] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [anon_sym___asm] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [STATE(252)] = { - [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), - }, - [STATE(253)] = { - [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), - }, - [STATE(254)] = { - [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), + [STATE(208)] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1306), + [aux_sym_preproc_embed_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym___attribute] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [anon_sym__Nonnull] = ACTIONS(1306), + [anon_sym_alignas] = ACTIONS(1306), + [anon_sym__Alignas] = ACTIONS(1306), + [aux_sym_primitive_type_token1] = ACTIONS(1306), + [anon_sym__BitInt] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym_static_assert] = ACTIONS(1306), + [anon_sym__Static_assert] = ACTIONS(1306), + [anon_sym_typeof] = ACTIONS(1306), + [anon_sym_typeof_unqual] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [anon_sym___asm] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [STATE(255)] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [anon_sym_COMMA] = ACTIONS(1272), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___attribute] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym__Nonnull] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [anon_sym___asm] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), + [STATE(209)] = { + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1310), + [aux_sym_preproc_embed_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token2] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym__Nonnull] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [aux_sym_primitive_type_token1] = ACTIONS(1310), + [anon_sym__BitInt] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym_static_assert] = ACTIONS(1310), + [anon_sym__Static_assert] = ACTIONS(1310), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_typeof_unqual] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [anon_sym___asm] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [STATE(256)] = { - [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(210)] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1314), + [aux_sym_preproc_embed_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = ACTIONS(1314), + [aux_sym_primitive_type_token1] = ACTIONS(1314), + [anon_sym__BitInt] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym__Static_assert] = ACTIONS(1314), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_typeof_unqual] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [STATE(257)] = { - [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(211)] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1322), + [aux_sym_preproc_embed_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___attribute] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym__Nonnull] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [aux_sym_primitive_type_token1] = ACTIONS(1322), + [anon_sym__BitInt] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym__Static_assert] = ACTIONS(1322), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_typeof_unqual] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [anon_sym___asm] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [STATE(258)] = { - [sym_identifier] = ACTIONS(1266), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym___extension__] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym___attribute__] = ACTIONS(1266), - [anon_sym___attribute] = ACTIONS(1266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), - [anon_sym___declspec] = ACTIONS(1266), - [anon_sym___cdecl] = ACTIONS(1266), - [anon_sym___clrcall] = ACTIONS(1266), - [anon_sym___stdcall] = ACTIONS(1266), - [anon_sym___fastcall] = ACTIONS(1266), - [anon_sym___thiscall] = ACTIONS(1266), - [anon_sym___vectorcall] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym___inline] = ACTIONS(1266), - [anon_sym___inline__] = ACTIONS(1266), - [anon_sym___forceinline] = ACTIONS(1266), - [anon_sym_thread_local] = ACTIONS(1266), - [anon_sym___thread] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_constexpr] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym___restrict__] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym__Noreturn] = ACTIONS(1266), - [anon_sym_noreturn] = ACTIONS(1266), - [anon_sym__Nonnull] = ACTIONS(1266), - [anon_sym_alignas] = ACTIONS(1266), - [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym___try] = ACTIONS(1266), - [anon_sym___leave] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym___alignof__] = ACTIONS(1266), - [anon_sym___alignof] = ACTIONS(1266), - [anon_sym__alignof] = ACTIONS(1266), - [anon_sym_alignof] = ACTIONS(1266), - [anon_sym__Alignof] = ACTIONS(1266), - [anon_sym_offsetof] = ACTIONS(1266), - [anon_sym__Generic] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1266), - [anon_sym___asm__] = ACTIONS(1266), - [anon_sym___asm] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_L_SQUOTE] = ACTIONS(1268), - [anon_sym_u_SQUOTE] = ACTIONS(1268), - [anon_sym_U_SQUOTE] = ACTIONS(1268), - [anon_sym_u8_SQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_L_DQUOTE] = ACTIONS(1268), - [anon_sym_u_DQUOTE] = ACTIONS(1268), - [anon_sym_U_DQUOTE] = ACTIONS(1268), - [anon_sym_u8_DQUOTE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_true] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_NULL] = ACTIONS(1266), - [anon_sym_nullptr] = ACTIONS(1266), + [STATE(212)] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1326), + [aux_sym_preproc_embed_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___attribute] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym__Nonnull] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [aux_sym_primitive_type_token1] = ACTIONS(1326), + [anon_sym__BitInt] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym_static_assert] = ACTIONS(1326), + [anon_sym__Static_assert] = ACTIONS(1326), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_typeof_unqual] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [anon_sym___asm] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [STATE(259)] = { - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___attribute] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym__Nonnull] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym___try] = ACTIONS(1270), - [anon_sym___leave] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [anon_sym___asm] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), + [STATE(213)] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1330), + [aux_sym_preproc_embed_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym___attribute] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [anon_sym__Nonnull] = ACTIONS(1330), + [anon_sym_alignas] = ACTIONS(1330), + [anon_sym__Alignas] = ACTIONS(1330), + [aux_sym_primitive_type_token1] = ACTIONS(1330), + [anon_sym__BitInt] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym_static_assert] = ACTIONS(1330), + [anon_sym__Static_assert] = ACTIONS(1330), + [anon_sym_typeof] = ACTIONS(1330), + [anon_sym_typeof_unqual] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [anon_sym___asm] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [STATE(260)] = { - [sym_identifier] = ACTIONS(1274), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___attribute] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_RBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym__Nonnull] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [anon_sym___asm] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [STATE(214)] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(261)] = { - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___attribute] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_RBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym__Nonnull] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym___try] = ACTIONS(1282), - [anon_sym___leave] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [anon_sym___asm] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - }, - [STATE(262)] = { - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___attribute] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym__Nonnull] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym___try] = ACTIONS(1286), - [anon_sym___leave] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [anon_sym___asm] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), + [STATE(215)] = { + [sym_identifier] = ACTIONS(1226), + [aux_sym_preproc_include_token1] = ACTIONS(1226), + [aux_sym_preproc_def_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1226), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1226), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1226), + [anon_sym__Static_assert] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_typeof_unqual] = 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), }, - [STATE(263)] = { - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___attribute] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_RBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym__Nonnull] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym___try] = ACTIONS(1290), - [anon_sym___leave] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [anon_sym___asm] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), + [STATE(216)] = { + [sym_identifier] = ACTIONS(1230), + [aux_sym_preproc_include_token1] = ACTIONS(1230), + [aux_sym_preproc_def_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1230), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1230), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1230), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1230), + [anon_sym__Static_assert] = ACTIONS(1230), + [anon_sym_typeof] = ACTIONS(1230), + [anon_sym_typeof_unqual] = 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), }, - [STATE(264)] = { - [sym_identifier] = ACTIONS(1278), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___attribute] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym__Nonnull] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym___try] = ACTIONS(1278), - [anon_sym___leave] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [anon_sym___asm] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - }, - [STATE(265)] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___attribute] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym__Nonnull] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [anon_sym___asm] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [STATE(217)] = { + [sym_identifier] = ACTIONS(1234), + [aux_sym_preproc_include_token1] = ACTIONS(1234), + [aux_sym_preproc_def_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1234), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1234), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1234), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1234), + [anon_sym__Static_assert] = ACTIONS(1234), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_typeof_unqual] = 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), }, - [STATE(266)] = { - [sym_identifier] = ACTIONS(1294), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___attribute] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym__Nonnull] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [anon_sym___asm] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), + [STATE(218)] = { + [sym_identifier] = ACTIONS(1238), + [aux_sym_preproc_include_token1] = ACTIONS(1238), + [aux_sym_preproc_def_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1238), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1238), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1238), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1238), + [anon_sym__Static_assert] = ACTIONS(1238), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_typeof_unqual] = 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), }, - [STATE(267)] = { - [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(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [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(1264), - [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(1264), - [anon_sym_RBRACE] = ACTIONS(1264), - [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), + [STATE(219)] = { + [sym_identifier] = ACTIONS(1242), + [aux_sym_preproc_include_token1] = ACTIONS(1242), + [aux_sym_preproc_def_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1242), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1242), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1242), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1242), + [anon_sym__Static_assert] = ACTIONS(1242), + [anon_sym_typeof] = ACTIONS(1242), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(220)] = { + [sym_identifier] = ACTIONS(1246), + [aux_sym_preproc_include_token1] = ACTIONS(1246), + [aux_sym_preproc_def_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1246), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1246), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1246), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1246), + [anon_sym__Static_assert] = ACTIONS(1246), + [anon_sym_typeof] = ACTIONS(1246), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(221)] = { + [sym_identifier] = ACTIONS(1258), + [aux_sym_preproc_include_token1] = ACTIONS(1258), + [aux_sym_preproc_def_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1258), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1258), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1258), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1258), + [anon_sym__Static_assert] = ACTIONS(1258), + [anon_sym_typeof] = ACTIONS(1258), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(222)] = { + [sym_identifier] = ACTIONS(1262), + [aux_sym_preproc_include_token1] = ACTIONS(1262), + [aux_sym_preproc_def_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1262), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1262), + [aux_sym_preproc_embed_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(1264), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_TILDE] = ACTIONS(1264), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1264), + [anon_sym_SEMI] = ACTIONS(1264), + [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(1264), + [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(1264), + [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), + [aux_sym_primitive_type_token1] = ACTIONS(1262), + [anon_sym__BitInt] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_else] = 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(1264), [anon_sym_PLUS_PLUS] = ACTIONS(1264), @@ -44624,6 +42761,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1262), [anon_sym__Alignof] = ACTIONS(1262), [anon_sym_offsetof] = ACTIONS(1262), + [anon_sym_static_assert] = ACTIONS(1262), + [anon_sym__Static_assert] = ACTIONS(1262), + [anon_sym_typeof] = ACTIONS(1262), + [anon_sym_typeof_unqual] = ACTIONS(1262), [anon_sym__Generic] = ACTIONS(1262), [anon_sym_asm] = ACTIONS(1262), [anon_sym___asm__] = ACTIONS(1262), @@ -44645,623 +42786,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1262), [sym_comment] = ACTIONS(3), }, - [STATE(268)] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym___attribute] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [anon_sym__Nonnull] = ACTIONS(1310), - [anon_sym_alignas] = ACTIONS(1310), - [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [anon_sym___asm] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [STATE(269)] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym___attribute] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [anon_sym__Nonnull] = ACTIONS(1334), - [anon_sym_alignas] = ACTIONS(1334), - [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [anon_sym___asm] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [STATE(270)] = { - [sym_expression] = STATE(699), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(675), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(675), - [sym_call_expression] = STATE(675), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(675), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(675), - [sym_initializer_list] = STATE(678), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1378), - [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1382), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1386), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1388), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym___attribute] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_STAR_EQ] = ACTIONS(1380), - [anon_sym_SLASH_EQ] = ACTIONS(1380), - [anon_sym_PERCENT_EQ] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1380), - [anon_sym_DASH_EQ] = ACTIONS(1380), - [anon_sym_LT_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_AMP_EQ] = ACTIONS(1380), - [anon_sym_CARET_EQ] = ACTIONS(1380), - [anon_sym_PIPE_EQ] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1392), - [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(1386), - [anon_sym_DASH_GT] = ACTIONS(1380), - [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), - }, - [STATE(271)] = { - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym___attribute] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [anon_sym__Nonnull] = ACTIONS(1302), - [anon_sym_alignas] = ACTIONS(1302), - [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym___try] = ACTIONS(1302), - [anon_sym___leave] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [anon_sym___asm] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - }, - [STATE(272)] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym___attribute] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1306), - [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [anon_sym___asm] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [STATE(273)] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___attribute] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [anon_sym__Nonnull] = ACTIONS(1314), - [anon_sym_alignas] = ACTIONS(1314), - [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [anon_sym___asm] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [STATE(223)] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(274)] = { + [STATE(224)] = { [sym_identifier] = ACTIONS(1318), [aux_sym_preproc_include_token1] = ACTIONS(1318), [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), [sym_preproc_directive] = ACTIONS(1318), @@ -45287,7 +42931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1318), [anon_sym___vectorcall] = ACTIONS(1318), [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), [anon_sym_signed] = ACTIONS(1318), [anon_sym_unsigned] = ACTIONS(1318), [anon_sym_long] = ACTIONS(1318), @@ -45312,11 +42955,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1318), [anon_sym_alignas] = ACTIONS(1318), [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), [anon_sym_enum] = ACTIONS(1318), [anon_sym_struct] = ACTIONS(1318), [anon_sym_union] = ACTIONS(1318), [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), [anon_sym_switch] = ACTIONS(1318), [anon_sym_case] = ACTIONS(1318), [anon_sym_default] = ACTIONS(1318), @@ -45338,6 +42983,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1318), [anon_sym__Alignof] = ACTIONS(1318), [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), [anon_sym__Generic] = ACTIONS(1318), [anon_sym_asm] = ACTIONS(1318), [anon_sym___asm__] = ACTIONS(1318), @@ -45359,1132 +43008,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(275)] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym___attribute] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [anon_sym__Nonnull] = ACTIONS(1322), - [anon_sym_alignas] = ACTIONS(1322), - [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [anon_sym___asm] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [STATE(276)] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___attribute] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [anon_sym__Nonnull] = ACTIONS(1326), - [anon_sym_alignas] = ACTIONS(1326), - [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [anon_sym___asm] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [STATE(277)] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym___attribute] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [anon_sym__Nonnull] = ACTIONS(1330), - [anon_sym_alignas] = ACTIONS(1330), - [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [anon_sym___asm] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [STATE(278)] = { - [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(225)] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [STATE(279)] = { - [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), + [STATE(226)] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [STATE(280)] = { - [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(227)] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = 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), }, - [STATE(281)] = { - [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(228)] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = 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), }, - [STATE(282)] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym___attribute] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [anon_sym__Nonnull] = ACTIONS(1310), - [anon_sym_alignas] = ACTIONS(1310), - [anon_sym__Alignas] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [anon_sym___asm] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [STATE(283)] = { - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1356), - [aux_sym_preproc_include_token1] = ACTIONS(1356), - [aux_sym_preproc_def_token1] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1358), - [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_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(229)] = { + [sym_identifier] = ACTIONS(1218), + [aux_sym_preproc_include_token1] = ACTIONS(1218), + [aux_sym_preproc_def_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1218), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1218), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1218), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1218), + [anon_sym__Static_assert] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1218), + [anon_sym_typeof_unqual] = 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), }, - [STATE(284)] = { - [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(230)] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = 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), }, - [STATE(285)] = { - [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_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(231)] = { + [sym_identifier] = ACTIONS(1254), + [aux_sym_preproc_include_token1] = ACTIONS(1254), + [aux_sym_preproc_def_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1254), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1254), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1254), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1254), + [anon_sym__Static_assert] = ACTIONS(1254), + [anon_sym_typeof] = ACTIONS(1254), + [anon_sym_typeof_unqual] = 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), }, - [STATE(286)] = { + [STATE(232)] = { [sym_identifier] = ACTIONS(1266), [aux_sym_preproc_include_token1] = ACTIONS(1266), [aux_sym_preproc_def_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1266), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1266), + [aux_sym_preproc_embed_token1] = ACTIONS(1266), [aux_sym_preproc_if_token1] = ACTIONS(1266), [aux_sym_preproc_if_token2] = ACTIONS(1266), [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), @@ -46536,11 +43843,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1266), [anon_sym_alignas] = ACTIONS(1266), [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), + [aux_sym_primitive_type_token1] = ACTIONS(1266), + [anon_sym__BitInt] = ACTIONS(1266), [anon_sym_enum] = ACTIONS(1266), [anon_sym_struct] = ACTIONS(1266), [anon_sym_union] = ACTIONS(1266), [anon_sym_if] = ACTIONS(1266), + [anon_sym_else] = ACTIONS(1266), [anon_sym_switch] = ACTIONS(1266), [anon_sym_case] = ACTIONS(1266), [anon_sym_default] = ACTIONS(1266), @@ -46562,6 +43871,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1266), [anon_sym__Alignof] = ACTIONS(1266), [anon_sym_offsetof] = ACTIONS(1266), + [anon_sym_static_assert] = ACTIONS(1266), + [anon_sym__Static_assert] = ACTIONS(1266), + [anon_sym_typeof] = ACTIONS(1266), + [anon_sym_typeof_unqual] = ACTIONS(1266), [anon_sym__Generic] = ACTIONS(1266), [anon_sym_asm] = ACTIONS(1266), [anon_sym___asm__] = ACTIONS(1266), @@ -46583,624 +43896,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1266), [sym_comment] = ACTIONS(3), }, - [STATE(287)] = { - [sym_identifier] = ACTIONS(1274), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token2] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___attribute] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym__Nonnull] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym___try] = ACTIONS(1274), - [anon_sym___leave] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [anon_sym___asm] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), - [sym_comment] = ACTIONS(3), - }, - [STATE(288)] = { - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token2] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___attribute] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym__Nonnull] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym___try] = ACTIONS(1282), - [anon_sym___leave] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [anon_sym___asm] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), - [sym_comment] = ACTIONS(3), - }, - [STATE(289)] = { - [sym_identifier] = ACTIONS(1278), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token2] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___attribute] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym__Nonnull] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym___try] = ACTIONS(1278), - [anon_sym___leave] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [anon_sym___asm] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), + [STATE(233)] = { + [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_errwarn_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1250), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1250), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1250), + [anon_sym__Static_assert] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1250), + [anon_sym_typeof_unqual] = 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), }, - [STATE(290)] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___attribute] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym__Nonnull] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [anon_sym___asm] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [STATE(234)] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(291)] = { - [sym_identifier] = ACTIONS(1294), - [aux_sym_preproc_include_token1] = ACTIONS(1294), - [aux_sym_preproc_def_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token1] = ACTIONS(1294), - [aux_sym_preproc_if_token2] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), - [sym_preproc_directive] = ACTIONS(1294), - [anon_sym_LPAREN2] = ACTIONS(1296), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_TILDE] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1294), - [anon_sym_PLUS] = ACTIONS(1294), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym___extension__] = ACTIONS(1294), - [anon_sym_typedef] = ACTIONS(1294), - [anon_sym_extern] = ACTIONS(1294), - [anon_sym___attribute__] = ACTIONS(1294), - [anon_sym___attribute] = ACTIONS(1294), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1296), - [anon_sym___declspec] = ACTIONS(1294), - [anon_sym___cdecl] = ACTIONS(1294), - [anon_sym___clrcall] = ACTIONS(1294), - [anon_sym___stdcall] = ACTIONS(1294), - [anon_sym___fastcall] = ACTIONS(1294), - [anon_sym___thiscall] = ACTIONS(1294), - [anon_sym___vectorcall] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1296), - [anon_sym_signed] = ACTIONS(1294), - [anon_sym_unsigned] = ACTIONS(1294), - [anon_sym_long] = ACTIONS(1294), - [anon_sym_short] = ACTIONS(1294), - [anon_sym_static] = ACTIONS(1294), - [anon_sym_auto] = ACTIONS(1294), - [anon_sym_register] = ACTIONS(1294), - [anon_sym_inline] = ACTIONS(1294), - [anon_sym___inline] = ACTIONS(1294), - [anon_sym___inline__] = ACTIONS(1294), - [anon_sym___forceinline] = ACTIONS(1294), - [anon_sym_thread_local] = ACTIONS(1294), - [anon_sym___thread] = ACTIONS(1294), - [anon_sym_const] = ACTIONS(1294), - [anon_sym_constexpr] = ACTIONS(1294), - [anon_sym_volatile] = ACTIONS(1294), - [anon_sym_restrict] = ACTIONS(1294), - [anon_sym___restrict__] = ACTIONS(1294), - [anon_sym__Atomic] = ACTIONS(1294), - [anon_sym__Noreturn] = ACTIONS(1294), - [anon_sym_noreturn] = ACTIONS(1294), - [anon_sym__Nonnull] = ACTIONS(1294), - [anon_sym_alignas] = ACTIONS(1294), - [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), - [anon_sym_enum] = ACTIONS(1294), - [anon_sym_struct] = ACTIONS(1294), - [anon_sym_union] = ACTIONS(1294), - [anon_sym_if] = ACTIONS(1294), - [anon_sym_switch] = ACTIONS(1294), - [anon_sym_case] = ACTIONS(1294), - [anon_sym_default] = ACTIONS(1294), - [anon_sym_while] = ACTIONS(1294), - [anon_sym_do] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_continue] = ACTIONS(1294), - [anon_sym_goto] = ACTIONS(1294), - [anon_sym___try] = ACTIONS(1294), - [anon_sym___leave] = ACTIONS(1294), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_sizeof] = ACTIONS(1294), - [anon_sym___alignof__] = ACTIONS(1294), - [anon_sym___alignof] = ACTIONS(1294), - [anon_sym__alignof] = ACTIONS(1294), - [anon_sym_alignof] = ACTIONS(1294), - [anon_sym__Alignof] = ACTIONS(1294), - [anon_sym_offsetof] = ACTIONS(1294), - [anon_sym__Generic] = ACTIONS(1294), - [anon_sym_asm] = ACTIONS(1294), - [anon_sym___asm__] = ACTIONS(1294), - [anon_sym___asm] = ACTIONS(1294), - [sym_number_literal] = ACTIONS(1296), - [anon_sym_L_SQUOTE] = ACTIONS(1296), - [anon_sym_u_SQUOTE] = ACTIONS(1296), - [anon_sym_U_SQUOTE] = ACTIONS(1296), - [anon_sym_u8_SQUOTE] = ACTIONS(1296), - [anon_sym_SQUOTE] = ACTIONS(1296), - [anon_sym_L_DQUOTE] = ACTIONS(1296), - [anon_sym_u_DQUOTE] = ACTIONS(1296), - [anon_sym_U_DQUOTE] = ACTIONS(1296), - [anon_sym_u8_DQUOTE] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_true] = ACTIONS(1294), - [sym_false] = ACTIONS(1294), - [anon_sym_NULL] = ACTIONS(1294), - [anon_sym_nullptr] = ACTIONS(1294), - [sym_comment] = ACTIONS(3), - }, - [STATE(292)] = { - [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(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [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(1264), - [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(1264), - [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(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [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(1264), - [anon_sym_L_SQUOTE] = ACTIONS(1264), - [anon_sym_u_SQUOTE] = ACTIONS(1264), - [anon_sym_U_SQUOTE] = ACTIONS(1264), - [anon_sym_u8_SQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_L_DQUOTE] = ACTIONS(1264), - [anon_sym_u_DQUOTE] = ACTIONS(1264), - [anon_sym_U_DQUOTE] = ACTIONS(1264), - [anon_sym_u8_DQUOTE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), - [sym_comment] = ACTIONS(3), - }, - [STATE(293)] = { + [STATE(235)] = { + [ts_builtin_sym_end] = ACTIONS(1304), [sym_identifier] = ACTIONS(1302), [aux_sym_preproc_include_token1] = ACTIONS(1302), [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1302), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1302), + [aux_sym_preproc_embed_token1] = ACTIONS(1302), [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token2] = ACTIONS(1302), [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), [sym_preproc_directive] = ACTIONS(1302), @@ -47250,11 +44176,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1302), [anon_sym_alignas] = ACTIONS(1302), [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), + [aux_sym_primitive_type_token1] = ACTIONS(1302), + [anon_sym__BitInt] = ACTIONS(1302), [anon_sym_enum] = ACTIONS(1302), [anon_sym_struct] = ACTIONS(1302), [anon_sym_union] = ACTIONS(1302), [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), [anon_sym_switch] = ACTIONS(1302), [anon_sym_case] = ACTIONS(1302), [anon_sym_default] = ACTIONS(1302), @@ -47276,6 +44204,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1302), [anon_sym__Alignof] = ACTIONS(1302), [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym_static_assert] = ACTIONS(1302), + [anon_sym__Static_assert] = ACTIONS(1302), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_typeof_unqual] = ACTIONS(1302), [anon_sym__Generic] = ACTIONS(1302), [anon_sym_asm] = ACTIONS(1302), [anon_sym___asm__] = ACTIONS(1302), @@ -47297,12 +44229,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [STATE(294)] = { + [STATE(236)] = { + [ts_builtin_sym_end] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1274), + [aux_sym_preproc_def_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1274), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1274), + [aux_sym_preproc_embed_token1] = ACTIONS(1274), + [aux_sym_preproc_if_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), + [sym_preproc_directive] = ACTIONS(1274), + [anon_sym_LPAREN2] = ACTIONS(1276), + [anon_sym_BANG] = ACTIONS(1276), + [anon_sym_TILDE] = ACTIONS(1276), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1276), + [anon_sym_AMP] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym___attribute__] = ACTIONS(1274), + [anon_sym___attribute] = ACTIONS(1274), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), + [anon_sym___declspec] = ACTIONS(1274), + [anon_sym___cdecl] = ACTIONS(1274), + [anon_sym___clrcall] = ACTIONS(1274), + [anon_sym___stdcall] = ACTIONS(1274), + [anon_sym___fastcall] = ACTIONS(1274), + [anon_sym___thiscall] = ACTIONS(1274), + [anon_sym___vectorcall] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_signed] = ACTIONS(1274), + [anon_sym_unsigned] = ACTIONS(1274), + [anon_sym_long] = ACTIONS(1274), + [anon_sym_short] = ACTIONS(1274), + [anon_sym_static] = ACTIONS(1274), + [anon_sym_auto] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_inline] = ACTIONS(1274), + [anon_sym___inline] = ACTIONS(1274), + [anon_sym___inline__] = ACTIONS(1274), + [anon_sym___forceinline] = ACTIONS(1274), + [anon_sym_thread_local] = ACTIONS(1274), + [anon_sym___thread] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [anon_sym_constexpr] = ACTIONS(1274), + [anon_sym_volatile] = ACTIONS(1274), + [anon_sym_restrict] = ACTIONS(1274), + [anon_sym___restrict__] = ACTIONS(1274), + [anon_sym__Atomic] = ACTIONS(1274), + [anon_sym__Noreturn] = ACTIONS(1274), + [anon_sym_noreturn] = ACTIONS(1274), + [anon_sym__Nonnull] = ACTIONS(1274), + [anon_sym_alignas] = ACTIONS(1274), + [anon_sym__Alignas] = ACTIONS(1274), + [aux_sym_primitive_type_token1] = ACTIONS(1274), + [anon_sym__BitInt] = ACTIONS(1274), + [anon_sym_enum] = ACTIONS(1274), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_union] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_switch] = ACTIONS(1274), + [anon_sym_case] = ACTIONS(1274), + [anon_sym_default] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_goto] = ACTIONS(1274), + [anon_sym___try] = ACTIONS(1274), + [anon_sym___leave] = ACTIONS(1274), + [anon_sym_DASH_DASH] = ACTIONS(1276), + [anon_sym_PLUS_PLUS] = ACTIONS(1276), + [anon_sym_sizeof] = ACTIONS(1274), + [anon_sym___alignof__] = ACTIONS(1274), + [anon_sym___alignof] = ACTIONS(1274), + [anon_sym__alignof] = ACTIONS(1274), + [anon_sym_alignof] = ACTIONS(1274), + [anon_sym__Alignof] = ACTIONS(1274), + [anon_sym_offsetof] = ACTIONS(1274), + [anon_sym_static_assert] = ACTIONS(1274), + [anon_sym__Static_assert] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1274), + [anon_sym_typeof_unqual] = ACTIONS(1274), + [anon_sym__Generic] = ACTIONS(1274), + [anon_sym_asm] = ACTIONS(1274), + [anon_sym___asm__] = ACTIONS(1274), + [anon_sym___asm] = ACTIONS(1274), + [sym_number_literal] = ACTIONS(1276), + [anon_sym_L_SQUOTE] = ACTIONS(1276), + [anon_sym_u_SQUOTE] = ACTIONS(1276), + [anon_sym_U_SQUOTE] = ACTIONS(1276), + [anon_sym_u8_SQUOTE] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_L_DQUOTE] = ACTIONS(1276), + [anon_sym_u_DQUOTE] = ACTIONS(1276), + [anon_sym_U_DQUOTE] = ACTIONS(1276), + [anon_sym_u8_DQUOTE] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym_true] = ACTIONS(1274), + [sym_false] = ACTIONS(1274), + [anon_sym_NULL] = ACTIONS(1274), + [anon_sym_nullptr] = ACTIONS(1274), + [sym_comment] = ACTIONS(3), + }, + [STATE(237)] = { + [ts_builtin_sym_end] = ACTIONS(1308), [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1306), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1306), + [aux_sym_preproc_embed_token1] = ACTIONS(1306), [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), [sym_preproc_directive] = ACTIONS(1306), @@ -47352,11 +44398,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1306), [anon_sym_alignas] = ACTIONS(1306), [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), + [aux_sym_primitive_type_token1] = ACTIONS(1306), + [anon_sym__BitInt] = ACTIONS(1306), [anon_sym_enum] = ACTIONS(1306), [anon_sym_struct] = ACTIONS(1306), [anon_sym_union] = ACTIONS(1306), [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), [anon_sym_switch] = ACTIONS(1306), [anon_sym_case] = ACTIONS(1306), [anon_sym_default] = ACTIONS(1306), @@ -47378,6 +44426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1306), [anon_sym__Alignof] = ACTIONS(1306), [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym_static_assert] = ACTIONS(1306), + [anon_sym__Static_assert] = ACTIONS(1306), + [anon_sym_typeof] = ACTIONS(1306), + [anon_sym_typeof_unqual] = ACTIONS(1306), [anon_sym__Generic] = ACTIONS(1306), [anon_sym_asm] = ACTIONS(1306), [anon_sym___asm__] = ACTIONS(1306), @@ -47399,114 +44451,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [STATE(295)] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___attribute] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [anon_sym__Nonnull] = ACTIONS(1314), - [anon_sym_alignas] = ACTIONS(1314), - [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [anon_sym___asm] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [STATE(296)] = { + [STATE(238)] = { [sym_identifier] = ACTIONS(1322), [aux_sym_preproc_include_token1] = ACTIONS(1322), [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1322), + [aux_sym_preproc_embed_token1] = ACTIONS(1322), [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), [sym_preproc_directive] = ACTIONS(1322), @@ -47532,6 +44484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1322), [anon_sym___vectorcall] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), [anon_sym_signed] = ACTIONS(1322), [anon_sym_unsigned] = ACTIONS(1322), [anon_sym_long] = ACTIONS(1322), @@ -47556,11 +44509,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1322), [anon_sym_alignas] = ACTIONS(1322), [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), + [aux_sym_primitive_type_token1] = ACTIONS(1322), + [anon_sym__BitInt] = ACTIONS(1322), [anon_sym_enum] = ACTIONS(1322), [anon_sym_struct] = ACTIONS(1322), [anon_sym_union] = ACTIONS(1322), [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), [anon_sym_switch] = ACTIONS(1322), [anon_sym_case] = ACTIONS(1322), [anon_sym_default] = ACTIONS(1322), @@ -47582,6 +44537,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1322), [anon_sym__Alignof] = ACTIONS(1322), [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym__Static_assert] = ACTIONS(1322), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_typeof_unqual] = ACTIONS(1322), [anon_sym__Generic] = ACTIONS(1322), [anon_sym_asm] = ACTIONS(1322), [anon_sym___asm__] = ACTIONS(1322), @@ -47603,12 +44562,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [STATE(297)] = { + [STATE(239)] = { + [ts_builtin_sym_end] = ACTIONS(1328), [sym_identifier] = ACTIONS(1326), [aux_sym_preproc_include_token1] = ACTIONS(1326), [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1326), + [aux_sym_preproc_embed_token1] = ACTIONS(1326), [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), [sym_preproc_directive] = ACTIONS(1326), @@ -47658,11 +44620,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1326), [anon_sym_alignas] = ACTIONS(1326), [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), + [aux_sym_primitive_type_token1] = ACTIONS(1326), + [anon_sym__BitInt] = ACTIONS(1326), [anon_sym_enum] = ACTIONS(1326), [anon_sym_struct] = ACTIONS(1326), [anon_sym_union] = ACTIONS(1326), [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), [anon_sym_switch] = ACTIONS(1326), [anon_sym_case] = ACTIONS(1326), [anon_sym_default] = ACTIONS(1326), @@ -47684,6 +44648,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1326), [anon_sym__Alignof] = ACTIONS(1326), [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym_static_assert] = ACTIONS(1326), + [anon_sym__Static_assert] = ACTIONS(1326), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_typeof_unqual] = ACTIONS(1326), [anon_sym__Generic] = ACTIONS(1326), [anon_sym_asm] = ACTIONS(1326), [anon_sym___asm__] = ACTIONS(1326), @@ -47705,12 +44673,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [STATE(298)] = { + [STATE(240)] = { [sym_identifier] = ACTIONS(1330), [aux_sym_preproc_include_token1] = ACTIONS(1330), [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1330), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1330), + [aux_sym_preproc_embed_token1] = ACTIONS(1330), [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), [sym_preproc_directive] = ACTIONS(1330), @@ -47736,6 +44706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1330), [anon_sym___vectorcall] = ACTIONS(1330), [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), [anon_sym_signed] = ACTIONS(1330), [anon_sym_unsigned] = ACTIONS(1330), [anon_sym_long] = ACTIONS(1330), @@ -47760,11 +44731,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1330), [anon_sym_alignas] = ACTIONS(1330), [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), + [aux_sym_primitive_type_token1] = ACTIONS(1330), + [anon_sym__BitInt] = ACTIONS(1330), [anon_sym_enum] = ACTIONS(1330), [anon_sym_struct] = ACTIONS(1330), [anon_sym_union] = ACTIONS(1330), [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), [anon_sym_switch] = ACTIONS(1330), [anon_sym_case] = ACTIONS(1330), [anon_sym_default] = ACTIONS(1330), @@ -47786,6 +44759,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1330), [anon_sym__Alignof] = ACTIONS(1330), [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym_static_assert] = ACTIONS(1330), + [anon_sym__Static_assert] = ACTIONS(1330), + [anon_sym_typeof] = ACTIONS(1330), + [anon_sym_typeof_unqual] = ACTIONS(1330), [anon_sym__Generic] = ACTIONS(1330), [anon_sym_asm] = ACTIONS(1330), [anon_sym___asm__] = ACTIONS(1330), @@ -47807,930 +44784,570 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [STATE(299)] = { - [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_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), - [sym_comment] = ACTIONS(3), - }, - [STATE(300)] = { - [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), - }, - [STATE(301)] = { - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [STATE(302)] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [STATE(303)] = { - [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), - [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), - [sym_comment] = ACTIONS(3), - }, - [STATE(304)] = { - [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(241)] = { + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(1310), + [aux_sym_preproc_def_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1310), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1310), + [aux_sym_preproc_embed_token1] = ACTIONS(1310), + [aux_sym_preproc_if_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), + [sym_preproc_directive] = ACTIONS(1310), + [anon_sym_LPAREN2] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_TILDE] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym___extension__] = ACTIONS(1310), + [anon_sym_typedef] = ACTIONS(1310), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym___attribute__] = ACTIONS(1310), + [anon_sym___attribute] = ACTIONS(1310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), + [anon_sym___declspec] = ACTIONS(1310), + [anon_sym___cdecl] = ACTIONS(1310), + [anon_sym___clrcall] = ACTIONS(1310), + [anon_sym___stdcall] = ACTIONS(1310), + [anon_sym___fastcall] = ACTIONS(1310), + [anon_sym___thiscall] = ACTIONS(1310), + [anon_sym___vectorcall] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_signed] = ACTIONS(1310), + [anon_sym_unsigned] = ACTIONS(1310), + [anon_sym_long] = ACTIONS(1310), + [anon_sym_short] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_auto] = ACTIONS(1310), + [anon_sym_register] = ACTIONS(1310), + [anon_sym_inline] = ACTIONS(1310), + [anon_sym___inline] = ACTIONS(1310), + [anon_sym___inline__] = ACTIONS(1310), + [anon_sym___forceinline] = ACTIONS(1310), + [anon_sym_thread_local] = ACTIONS(1310), + [anon_sym___thread] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_constexpr] = ACTIONS(1310), + [anon_sym_volatile] = ACTIONS(1310), + [anon_sym_restrict] = ACTIONS(1310), + [anon_sym___restrict__] = ACTIONS(1310), + [anon_sym__Atomic] = ACTIONS(1310), + [anon_sym__Noreturn] = ACTIONS(1310), + [anon_sym_noreturn] = ACTIONS(1310), + [anon_sym__Nonnull] = ACTIONS(1310), + [anon_sym_alignas] = ACTIONS(1310), + [anon_sym__Alignas] = ACTIONS(1310), + [aux_sym_primitive_type_token1] = ACTIONS(1310), + [anon_sym__BitInt] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_switch] = ACTIONS(1310), + [anon_sym_case] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_goto] = ACTIONS(1310), + [anon_sym___try] = ACTIONS(1310), + [anon_sym___leave] = ACTIONS(1310), + [anon_sym_DASH_DASH] = ACTIONS(1312), + [anon_sym_PLUS_PLUS] = ACTIONS(1312), + [anon_sym_sizeof] = ACTIONS(1310), + [anon_sym___alignof__] = ACTIONS(1310), + [anon_sym___alignof] = ACTIONS(1310), + [anon_sym__alignof] = ACTIONS(1310), + [anon_sym_alignof] = ACTIONS(1310), + [anon_sym__Alignof] = ACTIONS(1310), + [anon_sym_offsetof] = ACTIONS(1310), + [anon_sym_static_assert] = ACTIONS(1310), + [anon_sym__Static_assert] = ACTIONS(1310), + [anon_sym_typeof] = ACTIONS(1310), + [anon_sym_typeof_unqual] = ACTIONS(1310), + [anon_sym__Generic] = ACTIONS(1310), + [anon_sym_asm] = ACTIONS(1310), + [anon_sym___asm__] = ACTIONS(1310), + [anon_sym___asm] = ACTIONS(1310), + [sym_number_literal] = ACTIONS(1312), + [anon_sym_L_SQUOTE] = ACTIONS(1312), + [anon_sym_u_SQUOTE] = ACTIONS(1312), + [anon_sym_U_SQUOTE] = ACTIONS(1312), + [anon_sym_u8_SQUOTE] = ACTIONS(1312), + [anon_sym_SQUOTE] = ACTIONS(1312), + [anon_sym_L_DQUOTE] = ACTIONS(1312), + [anon_sym_u_DQUOTE] = ACTIONS(1312), + [anon_sym_U_DQUOTE] = ACTIONS(1312), + [anon_sym_u8_DQUOTE] = ACTIONS(1312), + [anon_sym_DQUOTE] = ACTIONS(1312), + [sym_true] = ACTIONS(1310), + [sym_false] = ACTIONS(1310), + [anon_sym_NULL] = ACTIONS(1310), + [anon_sym_nullptr] = ACTIONS(1310), [sym_comment] = ACTIONS(3), }, - [STATE(305)] = { - [sym_identifier] = ACTIONS(1270), - [aux_sym_preproc_include_token1] = ACTIONS(1270), - [aux_sym_preproc_def_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token1] = ACTIONS(1270), - [aux_sym_preproc_if_token2] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), - [sym_preproc_directive] = ACTIONS(1270), - [anon_sym_LPAREN2] = ACTIONS(1272), - [anon_sym_BANG] = ACTIONS(1272), - [anon_sym_TILDE] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym___extension__] = ACTIONS(1270), - [anon_sym_typedef] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym___attribute__] = ACTIONS(1270), - [anon_sym___attribute] = ACTIONS(1270), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1272), - [anon_sym___declspec] = ACTIONS(1270), - [anon_sym___cdecl] = ACTIONS(1270), - [anon_sym___clrcall] = ACTIONS(1270), - [anon_sym___stdcall] = ACTIONS(1270), - [anon_sym___fastcall] = ACTIONS(1270), - [anon_sym___thiscall] = ACTIONS(1270), - [anon_sym___vectorcall] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_signed] = ACTIONS(1270), - [anon_sym_unsigned] = ACTIONS(1270), - [anon_sym_long] = ACTIONS(1270), - [anon_sym_short] = ACTIONS(1270), - [anon_sym_static] = ACTIONS(1270), - [anon_sym_auto] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_inline] = ACTIONS(1270), - [anon_sym___inline] = ACTIONS(1270), - [anon_sym___inline__] = ACTIONS(1270), - [anon_sym___forceinline] = ACTIONS(1270), - [anon_sym_thread_local] = ACTIONS(1270), - [anon_sym___thread] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [anon_sym_constexpr] = ACTIONS(1270), - [anon_sym_volatile] = ACTIONS(1270), - [anon_sym_restrict] = ACTIONS(1270), - [anon_sym___restrict__] = ACTIONS(1270), - [anon_sym__Atomic] = ACTIONS(1270), - [anon_sym__Noreturn] = ACTIONS(1270), - [anon_sym_noreturn] = ACTIONS(1270), - [anon_sym__Nonnull] = ACTIONS(1270), - [anon_sym_alignas] = ACTIONS(1270), - [anon_sym__Alignas] = ACTIONS(1270), - [sym_primitive_type] = ACTIONS(1270), - [anon_sym_enum] = ACTIONS(1270), - [anon_sym_struct] = ACTIONS(1270), - [anon_sym_union] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_switch] = ACTIONS(1270), - [anon_sym_case] = ACTIONS(1270), - [anon_sym_default] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_goto] = ACTIONS(1270), - [anon_sym___try] = ACTIONS(1270), - [anon_sym___leave] = ACTIONS(1270), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_sizeof] = ACTIONS(1270), - [anon_sym___alignof__] = ACTIONS(1270), - [anon_sym___alignof] = ACTIONS(1270), - [anon_sym__alignof] = ACTIONS(1270), - [anon_sym_alignof] = ACTIONS(1270), - [anon_sym__Alignof] = ACTIONS(1270), - [anon_sym_offsetof] = ACTIONS(1270), - [anon_sym__Generic] = ACTIONS(1270), - [anon_sym_asm] = ACTIONS(1270), - [anon_sym___asm__] = ACTIONS(1270), - [anon_sym___asm] = ACTIONS(1270), - [sym_number_literal] = ACTIONS(1272), - [anon_sym_L_SQUOTE] = ACTIONS(1272), - [anon_sym_u_SQUOTE] = ACTIONS(1272), - [anon_sym_U_SQUOTE] = ACTIONS(1272), - [anon_sym_u8_SQUOTE] = ACTIONS(1272), - [anon_sym_SQUOTE] = ACTIONS(1272), - [anon_sym_L_DQUOTE] = ACTIONS(1272), - [anon_sym_u_DQUOTE] = ACTIONS(1272), - [anon_sym_U_DQUOTE] = ACTIONS(1272), - [anon_sym_u8_DQUOTE] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_true] = ACTIONS(1270), - [sym_false] = ACTIONS(1270), - [anon_sym_NULL] = ACTIONS(1270), - [anon_sym_nullptr] = ACTIONS(1270), + [STATE(242)] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1342), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1342), + [aux_sym_preproc_embed_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym___attribute] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [anon_sym__Nonnull] = ACTIONS(1342), + [anon_sym_alignas] = ACTIONS(1342), + [anon_sym__Alignas] = ACTIONS(1342), + [aux_sym_primitive_type_token1] = ACTIONS(1342), + [anon_sym__BitInt] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym_static_assert] = ACTIONS(1342), + [anon_sym__Static_assert] = ACTIONS(1342), + [anon_sym_typeof] = ACTIONS(1342), + [anon_sym_typeof_unqual] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [anon_sym___asm] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [STATE(306)] = { - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token2] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___attribute] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym__Nonnull] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym___try] = ACTIONS(1286), - [anon_sym___leave] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [anon_sym___asm] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), + [STATE(243)] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1314), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1314), + [aux_sym_preproc_embed_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym___attribute] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [anon_sym__Nonnull] = ACTIONS(1314), + [anon_sym_alignas] = ACTIONS(1314), + [anon_sym__Alignas] = ACTIONS(1314), + [aux_sym_primitive_type_token1] = ACTIONS(1314), + [anon_sym__BitInt] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym_static_assert] = ACTIONS(1314), + [anon_sym__Static_assert] = ACTIONS(1314), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_typeof_unqual] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [anon_sym___asm] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [STATE(307)] = { - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token2] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___attribute] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym__Nonnull] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym___try] = ACTIONS(1290), - [anon_sym___leave] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [anon_sym___asm] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), + [STATE(244)] = { + [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_errwarn_token1] = ACTIONS(1226), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1226), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1226), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1226), + [anon_sym__Static_assert] = ACTIONS(1226), + [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_typeof_unqual] = 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), }, - [STATE(308)] = { + [STATE(245)] = { + [ts_builtin_sym_end] = ACTIONS(1280), + [sym_identifier] = ACTIONS(1278), + [aux_sym_preproc_include_token1] = ACTIONS(1278), + [aux_sym_preproc_def_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1278), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1278), + [aux_sym_preproc_embed_token1] = ACTIONS(1278), + [aux_sym_preproc_if_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), + [sym_preproc_directive] = ACTIONS(1278), + [anon_sym_LPAREN2] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1280), + [anon_sym_TILDE] = ACTIONS(1280), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1280), + [anon_sym_AMP] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1280), + [anon_sym___extension__] = ACTIONS(1278), + [anon_sym_typedef] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1278), + [anon_sym___attribute__] = ACTIONS(1278), + [anon_sym___attribute] = ACTIONS(1278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), + [anon_sym___declspec] = ACTIONS(1278), + [anon_sym___cdecl] = ACTIONS(1278), + [anon_sym___clrcall] = ACTIONS(1278), + [anon_sym___stdcall] = ACTIONS(1278), + [anon_sym___fastcall] = ACTIONS(1278), + [anon_sym___thiscall] = ACTIONS(1278), + [anon_sym___vectorcall] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1280), + [anon_sym_signed] = ACTIONS(1278), + [anon_sym_unsigned] = ACTIONS(1278), + [anon_sym_long] = ACTIONS(1278), + [anon_sym_short] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_auto] = ACTIONS(1278), + [anon_sym_register] = ACTIONS(1278), + [anon_sym_inline] = ACTIONS(1278), + [anon_sym___inline] = ACTIONS(1278), + [anon_sym___inline__] = ACTIONS(1278), + [anon_sym___forceinline] = ACTIONS(1278), + [anon_sym_thread_local] = ACTIONS(1278), + [anon_sym___thread] = ACTIONS(1278), + [anon_sym_const] = ACTIONS(1278), + [anon_sym_constexpr] = ACTIONS(1278), + [anon_sym_volatile] = ACTIONS(1278), + [anon_sym_restrict] = ACTIONS(1278), + [anon_sym___restrict__] = ACTIONS(1278), + [anon_sym__Atomic] = ACTIONS(1278), + [anon_sym__Noreturn] = ACTIONS(1278), + [anon_sym_noreturn] = ACTIONS(1278), + [anon_sym__Nonnull] = ACTIONS(1278), + [anon_sym_alignas] = ACTIONS(1278), + [anon_sym__Alignas] = ACTIONS(1278), + [aux_sym_primitive_type_token1] = ACTIONS(1278), + [anon_sym__BitInt] = ACTIONS(1278), + [anon_sym_enum] = ACTIONS(1278), + [anon_sym_struct] = ACTIONS(1278), + [anon_sym_union] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1278), + [anon_sym_else] = ACTIONS(1278), + [anon_sym_switch] = ACTIONS(1278), + [anon_sym_case] = ACTIONS(1278), + [anon_sym_default] = ACTIONS(1278), + [anon_sym_while] = ACTIONS(1278), + [anon_sym_do] = ACTIONS(1278), + [anon_sym_for] = ACTIONS(1278), + [anon_sym_return] = ACTIONS(1278), + [anon_sym_break] = ACTIONS(1278), + [anon_sym_continue] = ACTIONS(1278), + [anon_sym_goto] = ACTIONS(1278), + [anon_sym___try] = ACTIONS(1278), + [anon_sym___leave] = ACTIONS(1278), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_sizeof] = ACTIONS(1278), + [anon_sym___alignof__] = ACTIONS(1278), + [anon_sym___alignof] = ACTIONS(1278), + [anon_sym__alignof] = ACTIONS(1278), + [anon_sym_alignof] = ACTIONS(1278), + [anon_sym__Alignof] = ACTIONS(1278), + [anon_sym_offsetof] = ACTIONS(1278), + [anon_sym_static_assert] = ACTIONS(1278), + [anon_sym__Static_assert] = ACTIONS(1278), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_typeof_unqual] = ACTIONS(1278), + [anon_sym__Generic] = ACTIONS(1278), + [anon_sym_asm] = ACTIONS(1278), + [anon_sym___asm__] = ACTIONS(1278), + [anon_sym___asm] = ACTIONS(1278), + [sym_number_literal] = ACTIONS(1280), + [anon_sym_L_SQUOTE] = ACTIONS(1280), + [anon_sym_u_SQUOTE] = ACTIONS(1280), + [anon_sym_U_SQUOTE] = ACTIONS(1280), + [anon_sym_u8_SQUOTE] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_L_DQUOTE] = ACTIONS(1280), + [anon_sym_u_DQUOTE] = ACTIONS(1280), + [anon_sym_U_DQUOTE] = ACTIONS(1280), + [anon_sym_u8_DQUOTE] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(1280), + [sym_true] = ACTIONS(1278), + [sym_false] = ACTIONS(1278), + [anon_sym_NULL] = ACTIONS(1278), + [anon_sym_nullptr] = ACTIONS(1278), + [sym_comment] = ACTIONS(3), + }, + [STATE(246)] = { + [ts_builtin_sym_end] = ACTIONS(1320), [sym_identifier] = ACTIONS(1318), [aux_sym_preproc_include_token1] = ACTIONS(1318), [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), [sym_preproc_directive] = ACTIONS(1318), @@ -48780,11 +45397,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1318), [anon_sym_alignas] = ACTIONS(1318), [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), [anon_sym_enum] = ACTIONS(1318), [anon_sym_struct] = ACTIONS(1318), [anon_sym_union] = ACTIONS(1318), [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), [anon_sym_switch] = ACTIONS(1318), [anon_sym_case] = ACTIONS(1318), [anon_sym_default] = ACTIONS(1318), @@ -48806,6 +45425,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1318), [anon_sym__Alignof] = ACTIONS(1318), [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), [anon_sym__Generic] = ACTIONS(1318), [anon_sym_asm] = ACTIONS(1318), [anon_sym___asm__] = ACTIONS(1318), @@ -48827,918 +45450,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(309)] = { - [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), - [sym_comment] = ACTIONS(3), - }, - [STATE(310)] = { - [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(247)] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [STATE(311)] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_TILDE] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym___attribute] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1337), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [anon_sym__Nonnull] = ACTIONS(1334), - [anon_sym_alignas] = ACTIONS(1334), - [anon_sym__Alignas] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1337), - [anon_sym_PLUS_PLUS] = ACTIONS(1337), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [anon_sym___asm] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1337), - [anon_sym_L_SQUOTE] = ACTIONS(1337), - [anon_sym_u_SQUOTE] = ACTIONS(1337), - [anon_sym_U_SQUOTE] = ACTIONS(1337), - [anon_sym_u8_SQUOTE] = ACTIONS(1337), - [anon_sym_SQUOTE] = ACTIONS(1337), - [anon_sym_L_DQUOTE] = ACTIONS(1337), - [anon_sym_u_DQUOTE] = ACTIONS(1337), - [anon_sym_U_DQUOTE] = ACTIONS(1337), - [anon_sym_u8_DQUOTE] = ACTIONS(1337), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [STATE(312)] = { - [sym_expression] = STATE(699), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(675), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(675), - [sym_call_expression] = STATE(675), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(675), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(675), - [sym_initializer_list] = STATE(678), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(713), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_else_token1] = ACTIONS(1380), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1386), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_STAR_EQ] = ACTIONS(1380), - [anon_sym_SLASH_EQ] = ACTIONS(1380), - [anon_sym_PERCENT_EQ] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1380), - [anon_sym_DASH_EQ] = ACTIONS(1380), - [anon_sym_LT_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_AMP_EQ] = ACTIONS(1380), - [anon_sym_CARET_EQ] = ACTIONS(1380), - [anon_sym_PIPE_EQ] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1400), - [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(1386), - [anon_sym_DASH_GT] = ACTIONS(1380), - [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), - }, - [STATE(313)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(2003), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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), - }, - [STATE(314)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(1995), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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), - }, - [STATE(315)] = { - [ts_builtin_sym_end] = ACTIONS(1276), - [sym_identifier] = ACTIONS(1274), - [aux_sym_preproc_include_token1] = ACTIONS(1274), - [aux_sym_preproc_def_token1] = ACTIONS(1274), - [aux_sym_preproc_if_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1274), - [sym_preproc_directive] = ACTIONS(1274), - [anon_sym_LPAREN2] = ACTIONS(1276), - [anon_sym_BANG] = ACTIONS(1276), - [anon_sym_TILDE] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1274), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym___extension__] = ACTIONS(1274), - [anon_sym_typedef] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym___attribute__] = ACTIONS(1274), - [anon_sym___attribute] = ACTIONS(1274), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1276), - [anon_sym___declspec] = ACTIONS(1274), - [anon_sym___cdecl] = ACTIONS(1274), - [anon_sym___clrcall] = ACTIONS(1274), - [anon_sym___stdcall] = ACTIONS(1274), - [anon_sym___fastcall] = ACTIONS(1274), - [anon_sym___thiscall] = ACTIONS(1274), - [anon_sym___vectorcall] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_signed] = ACTIONS(1274), - [anon_sym_unsigned] = ACTIONS(1274), - [anon_sym_long] = ACTIONS(1274), - [anon_sym_short] = ACTIONS(1274), - [anon_sym_static] = ACTIONS(1274), - [anon_sym_auto] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_inline] = ACTIONS(1274), - [anon_sym___inline] = ACTIONS(1274), - [anon_sym___inline__] = ACTIONS(1274), - [anon_sym___forceinline] = ACTIONS(1274), - [anon_sym_thread_local] = ACTIONS(1274), - [anon_sym___thread] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [anon_sym_constexpr] = ACTIONS(1274), - [anon_sym_volatile] = ACTIONS(1274), - [anon_sym_restrict] = ACTIONS(1274), - [anon_sym___restrict__] = ACTIONS(1274), - [anon_sym__Atomic] = ACTIONS(1274), - [anon_sym__Noreturn] = ACTIONS(1274), - [anon_sym_noreturn] = ACTIONS(1274), - [anon_sym__Nonnull] = ACTIONS(1274), - [anon_sym_alignas] = ACTIONS(1274), - [anon_sym__Alignas] = ACTIONS(1274), - [sym_primitive_type] = ACTIONS(1274), - [anon_sym_enum] = ACTIONS(1274), - [anon_sym_struct] = ACTIONS(1274), - [anon_sym_union] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_switch] = ACTIONS(1274), - [anon_sym_case] = ACTIONS(1274), - [anon_sym_default] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_goto] = ACTIONS(1274), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_sizeof] = ACTIONS(1274), - [anon_sym___alignof__] = ACTIONS(1274), - [anon_sym___alignof] = ACTIONS(1274), - [anon_sym__alignof] = ACTIONS(1274), - [anon_sym_alignof] = ACTIONS(1274), - [anon_sym__Alignof] = ACTIONS(1274), - [anon_sym_offsetof] = ACTIONS(1274), - [anon_sym__Generic] = ACTIONS(1274), - [anon_sym_asm] = ACTIONS(1274), - [anon_sym___asm__] = ACTIONS(1274), - [anon_sym___asm] = ACTIONS(1274), - [sym_number_literal] = ACTIONS(1276), - [anon_sym_L_SQUOTE] = ACTIONS(1276), - [anon_sym_u_SQUOTE] = ACTIONS(1276), - [anon_sym_U_SQUOTE] = ACTIONS(1276), - [anon_sym_u8_SQUOTE] = ACTIONS(1276), - [anon_sym_SQUOTE] = ACTIONS(1276), - [anon_sym_L_DQUOTE] = ACTIONS(1276), - [anon_sym_u_DQUOTE] = ACTIONS(1276), - [anon_sym_U_DQUOTE] = ACTIONS(1276), - [anon_sym_u8_DQUOTE] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_true] = ACTIONS(1274), - [sym_false] = ACTIONS(1274), - [anon_sym_NULL] = ACTIONS(1274), - [anon_sym_nullptr] = ACTIONS(1274), + [STATE(248)] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1318), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1318), + [aux_sym_preproc_embed_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym___attribute] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [anon_sym__Nonnull] = ACTIONS(1318), + [anon_sym_alignas] = ACTIONS(1318), + [anon_sym__Alignas] = ACTIONS(1318), + [aux_sym_primitive_type_token1] = ACTIONS(1318), + [anon_sym__BitInt] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym_static_assert] = ACTIONS(1318), + [anon_sym__Static_assert] = ACTIONS(1318), + [anon_sym_typeof] = ACTIONS(1318), + [anon_sym_typeof_unqual] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [anon_sym___asm] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [STATE(316)] = { - [sym_attribute_declaration] = STATE(369), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(166), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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(249)] = { + [ts_builtin_sym_end] = ACTIONS(1284), + [sym_identifier] = ACTIONS(1282), + [aux_sym_preproc_include_token1] = ACTIONS(1282), + [aux_sym_preproc_def_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1282), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1282), + [aux_sym_preproc_embed_token1] = ACTIONS(1282), + [aux_sym_preproc_if_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), + [sym_preproc_directive] = ACTIONS(1282), + [anon_sym_LPAREN2] = ACTIONS(1284), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_TILDE] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PLUS] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1284), + [anon_sym___extension__] = ACTIONS(1282), + [anon_sym_typedef] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1282), + [anon_sym___attribute__] = ACTIONS(1282), + [anon_sym___attribute] = ACTIONS(1282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), + [anon_sym___declspec] = ACTIONS(1282), + [anon_sym___cdecl] = ACTIONS(1282), + [anon_sym___clrcall] = ACTIONS(1282), + [anon_sym___stdcall] = ACTIONS(1282), + [anon_sym___fastcall] = ACTIONS(1282), + [anon_sym___thiscall] = ACTIONS(1282), + [anon_sym___vectorcall] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1284), + [anon_sym_signed] = ACTIONS(1282), + [anon_sym_unsigned] = ACTIONS(1282), + [anon_sym_long] = ACTIONS(1282), + [anon_sym_short] = ACTIONS(1282), + [anon_sym_static] = ACTIONS(1282), + [anon_sym_auto] = ACTIONS(1282), + [anon_sym_register] = ACTIONS(1282), + [anon_sym_inline] = ACTIONS(1282), + [anon_sym___inline] = ACTIONS(1282), + [anon_sym___inline__] = ACTIONS(1282), + [anon_sym___forceinline] = ACTIONS(1282), + [anon_sym_thread_local] = ACTIONS(1282), + [anon_sym___thread] = ACTIONS(1282), + [anon_sym_const] = ACTIONS(1282), + [anon_sym_constexpr] = ACTIONS(1282), + [anon_sym_volatile] = ACTIONS(1282), + [anon_sym_restrict] = ACTIONS(1282), + [anon_sym___restrict__] = ACTIONS(1282), + [anon_sym__Atomic] = ACTIONS(1282), + [anon_sym__Noreturn] = ACTIONS(1282), + [anon_sym_noreturn] = ACTIONS(1282), + [anon_sym__Nonnull] = ACTIONS(1282), + [anon_sym_alignas] = ACTIONS(1282), + [anon_sym__Alignas] = ACTIONS(1282), + [aux_sym_primitive_type_token1] = ACTIONS(1282), + [anon_sym__BitInt] = ACTIONS(1282), + [anon_sym_enum] = ACTIONS(1282), + [anon_sym_struct] = ACTIONS(1282), + [anon_sym_union] = ACTIONS(1282), + [anon_sym_if] = ACTIONS(1282), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_switch] = ACTIONS(1282), + [anon_sym_case] = ACTIONS(1282), + [anon_sym_default] = ACTIONS(1282), + [anon_sym_while] = ACTIONS(1282), + [anon_sym_do] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1282), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1282), + [anon_sym_continue] = ACTIONS(1282), + [anon_sym_goto] = ACTIONS(1282), + [anon_sym___try] = ACTIONS(1282), + [anon_sym___leave] = ACTIONS(1282), + [anon_sym_DASH_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1284), + [anon_sym_sizeof] = ACTIONS(1282), + [anon_sym___alignof__] = ACTIONS(1282), + [anon_sym___alignof] = ACTIONS(1282), + [anon_sym__alignof] = ACTIONS(1282), + [anon_sym_alignof] = ACTIONS(1282), + [anon_sym__Alignof] = ACTIONS(1282), + [anon_sym_offsetof] = ACTIONS(1282), + [anon_sym_static_assert] = ACTIONS(1282), + [anon_sym__Static_assert] = ACTIONS(1282), + [anon_sym_typeof] = ACTIONS(1282), + [anon_sym_typeof_unqual] = ACTIONS(1282), + [anon_sym__Generic] = ACTIONS(1282), + [anon_sym_asm] = ACTIONS(1282), + [anon_sym___asm__] = ACTIONS(1282), + [anon_sym___asm] = ACTIONS(1282), + [sym_number_literal] = ACTIONS(1284), + [anon_sym_L_SQUOTE] = ACTIONS(1284), + [anon_sym_u_SQUOTE] = ACTIONS(1284), + [anon_sym_U_SQUOTE] = ACTIONS(1284), + [anon_sym_u8_SQUOTE] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_L_DQUOTE] = ACTIONS(1284), + [anon_sym_u_DQUOTE] = ACTIONS(1284), + [anon_sym_U_DQUOTE] = ACTIONS(1284), + [anon_sym_u8_DQUOTE] = ACTIONS(1284), + [anon_sym_DQUOTE] = ACTIONS(1284), + [sym_true] = ACTIONS(1282), + [sym_false] = ACTIONS(1282), + [anon_sym_NULL] = ACTIONS(1282), + [anon_sym_nullptr] = ACTIONS(1282), [sym_comment] = ACTIONS(3), }, - [STATE(317)] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym___attribute] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [anon_sym__Nonnull] = ACTIONS(1298), - [anon_sym_alignas] = ACTIONS(1298), - [anon_sym__Alignas] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [anon_sym___asm] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [STATE(250)] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1338), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1338), + [aux_sym_preproc_embed_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym___attribute] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [anon_sym__Nonnull] = ACTIONS(1338), + [anon_sym_alignas] = ACTIONS(1338), + [anon_sym__Alignas] = ACTIONS(1338), + [aux_sym_primitive_type_token1] = ACTIONS(1338), + [anon_sym__BitInt] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym__Static_assert] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_typeof_unqual] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [anon_sym___asm] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [STATE(318)] = { - [ts_builtin_sym_end] = ACTIONS(1296), + [STATE(251)] = { [sym_identifier] = ACTIONS(1294), [aux_sym_preproc_include_token1] = ACTIONS(1294), [aux_sym_preproc_def_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1294), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1294), + [aux_sym_preproc_embed_token1] = ACTIONS(1294), [aux_sym_preproc_if_token1] = ACTIONS(1294), [aux_sym_preproc_ifdef_token1] = ACTIONS(1294), [aux_sym_preproc_ifdef_token2] = ACTIONS(1294), @@ -49765,6 +45927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1294), [anon_sym___vectorcall] = ACTIONS(1294), [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), [anon_sym_signed] = ACTIONS(1294), [anon_sym_unsigned] = ACTIONS(1294), [anon_sym_long] = ACTIONS(1294), @@ -49789,11 +45952,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(1294), [anon_sym_alignas] = ACTIONS(1294), [anon_sym__Alignas] = ACTIONS(1294), - [sym_primitive_type] = ACTIONS(1294), + [aux_sym_primitive_type_token1] = ACTIONS(1294), + [anon_sym__BitInt] = ACTIONS(1294), [anon_sym_enum] = ACTIONS(1294), [anon_sym_struct] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1294), [anon_sym_if] = ACTIONS(1294), + [anon_sym_else] = ACTIONS(1294), [anon_sym_switch] = ACTIONS(1294), [anon_sym_case] = ACTIONS(1294), [anon_sym_default] = ACTIONS(1294), @@ -49804,6 +45969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(1294), [anon_sym_continue] = ACTIONS(1294), [anon_sym_goto] = ACTIONS(1294), + [anon_sym___try] = ACTIONS(1294), + [anon_sym___leave] = ACTIONS(1294), [anon_sym_DASH_DASH] = ACTIONS(1296), [anon_sym_PLUS_PLUS] = ACTIONS(1296), [anon_sym_sizeof] = ACTIONS(1294), @@ -49813,6 +45980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignof] = ACTIONS(1294), [anon_sym__Alignof] = ACTIONS(1294), [anon_sym_offsetof] = ACTIONS(1294), + [anon_sym_static_assert] = ACTIONS(1294), + [anon_sym__Static_assert] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(1294), + [anon_sym_typeof_unqual] = ACTIONS(1294), [anon_sym__Generic] = ACTIONS(1294), [anon_sym_asm] = ACTIONS(1294), [anon_sym___asm__] = ACTIONS(1294), @@ -49834,26404 +46005,34739 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1294), [sym_comment] = ACTIONS(3), }, - [STATE(319)] = { - [ts_builtin_sym_end] = ACTIONS(1264), - [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(1264), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1262), - [anon_sym_PLUS] = ACTIONS(1262), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1264), - [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(1264), - [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(1264), - [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_DASH_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1264), - [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(1264), - [anon_sym_L_SQUOTE] = ACTIONS(1264), - [anon_sym_u_SQUOTE] = ACTIONS(1264), - [anon_sym_U_SQUOTE] = ACTIONS(1264), - [anon_sym_u8_SQUOTE] = ACTIONS(1264), - [anon_sym_SQUOTE] = ACTIONS(1264), - [anon_sym_L_DQUOTE] = ACTIONS(1264), - [anon_sym_u_DQUOTE] = ACTIONS(1264), - [anon_sym_U_DQUOTE] = ACTIONS(1264), - [anon_sym_u8_DQUOTE] = ACTIONS(1264), - [anon_sym_DQUOTE] = ACTIONS(1264), - [sym_true] = ACTIONS(1262), - [sym_false] = ACTIONS(1262), - [anon_sym_NULL] = ACTIONS(1262), - [anon_sym_nullptr] = ACTIONS(1262), + [STATE(252)] = { + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1322), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1322), + [aux_sym_preproc_embed_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym___attribute] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [anon_sym__Nonnull] = ACTIONS(1322), + [anon_sym_alignas] = ACTIONS(1322), + [anon_sym__Alignas] = ACTIONS(1322), + [aux_sym_primitive_type_token1] = ACTIONS(1322), + [anon_sym__BitInt] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym_static_assert] = ACTIONS(1322), + [anon_sym__Static_assert] = ACTIONS(1322), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_typeof_unqual] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [anon_sym___asm] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [STATE(320)] = { - [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), + [STATE(253)] = { + [sym_identifier] = ACTIONS(1290), + [aux_sym_preproc_include_token1] = ACTIONS(1290), + [aux_sym_preproc_def_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1290), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1290), + [aux_sym_preproc_embed_token1] = ACTIONS(1290), + [aux_sym_preproc_if_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), + [sym_preproc_directive] = ACTIONS(1290), + [anon_sym_LPAREN2] = ACTIONS(1292), + [anon_sym_BANG] = ACTIONS(1292), + [anon_sym_TILDE] = ACTIONS(1292), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1292), + [anon_sym_AMP] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1292), + [anon_sym___extension__] = ACTIONS(1290), + [anon_sym_typedef] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1290), + [anon_sym___attribute__] = ACTIONS(1290), + [anon_sym___attribute] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), + [anon_sym___declspec] = ACTIONS(1290), + [anon_sym___cdecl] = ACTIONS(1290), + [anon_sym___clrcall] = ACTIONS(1290), + [anon_sym___stdcall] = ACTIONS(1290), + [anon_sym___fastcall] = ACTIONS(1290), + [anon_sym___thiscall] = ACTIONS(1290), + [anon_sym___vectorcall] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1292), + [anon_sym_RBRACE] = ACTIONS(1292), + [anon_sym_signed] = ACTIONS(1290), + [anon_sym_unsigned] = ACTIONS(1290), + [anon_sym_long] = ACTIONS(1290), + [anon_sym_short] = ACTIONS(1290), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_auto] = ACTIONS(1290), + [anon_sym_register] = ACTIONS(1290), + [anon_sym_inline] = ACTIONS(1290), + [anon_sym___inline] = ACTIONS(1290), + [anon_sym___inline__] = ACTIONS(1290), + [anon_sym___forceinline] = ACTIONS(1290), + [anon_sym_thread_local] = ACTIONS(1290), + [anon_sym___thread] = ACTIONS(1290), + [anon_sym_const] = ACTIONS(1290), + [anon_sym_constexpr] = ACTIONS(1290), + [anon_sym_volatile] = ACTIONS(1290), + [anon_sym_restrict] = ACTIONS(1290), + [anon_sym___restrict__] = ACTIONS(1290), + [anon_sym__Atomic] = ACTIONS(1290), + [anon_sym__Noreturn] = ACTIONS(1290), + [anon_sym_noreturn] = ACTIONS(1290), + [anon_sym__Nonnull] = ACTIONS(1290), + [anon_sym_alignas] = ACTIONS(1290), + [anon_sym__Alignas] = ACTIONS(1290), + [aux_sym_primitive_type_token1] = ACTIONS(1290), + [anon_sym__BitInt] = ACTIONS(1290), + [anon_sym_enum] = ACTIONS(1290), + [anon_sym_struct] = ACTIONS(1290), + [anon_sym_union] = ACTIONS(1290), + [anon_sym_if] = ACTIONS(1290), + [anon_sym_else] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1290), + [anon_sym_case] = ACTIONS(1290), + [anon_sym_default] = ACTIONS(1290), + [anon_sym_while] = ACTIONS(1290), + [anon_sym_do] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1290), + [anon_sym_return] = ACTIONS(1290), + [anon_sym_break] = ACTIONS(1290), + [anon_sym_continue] = ACTIONS(1290), + [anon_sym_goto] = ACTIONS(1290), + [anon_sym___try] = ACTIONS(1290), + [anon_sym___leave] = ACTIONS(1290), + [anon_sym_DASH_DASH] = ACTIONS(1292), + [anon_sym_PLUS_PLUS] = ACTIONS(1292), + [anon_sym_sizeof] = ACTIONS(1290), + [anon_sym___alignof__] = ACTIONS(1290), + [anon_sym___alignof] = ACTIONS(1290), + [anon_sym__alignof] = ACTIONS(1290), + [anon_sym_alignof] = ACTIONS(1290), + [anon_sym__Alignof] = ACTIONS(1290), + [anon_sym_offsetof] = ACTIONS(1290), + [anon_sym_static_assert] = ACTIONS(1290), + [anon_sym__Static_assert] = ACTIONS(1290), + [anon_sym_typeof] = ACTIONS(1290), + [anon_sym_typeof_unqual] = ACTIONS(1290), + [anon_sym__Generic] = ACTIONS(1290), + [anon_sym_asm] = ACTIONS(1290), + [anon_sym___asm__] = ACTIONS(1290), + [anon_sym___asm] = ACTIONS(1290), + [sym_number_literal] = ACTIONS(1292), + [anon_sym_L_SQUOTE] = ACTIONS(1292), + [anon_sym_u_SQUOTE] = ACTIONS(1292), + [anon_sym_U_SQUOTE] = ACTIONS(1292), + [anon_sym_u8_SQUOTE] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_L_DQUOTE] = ACTIONS(1292), + [anon_sym_u_DQUOTE] = ACTIONS(1292), + [anon_sym_U_DQUOTE] = ACTIONS(1292), + [anon_sym_u8_DQUOTE] = ACTIONS(1292), + [anon_sym_DQUOTE] = ACTIONS(1292), + [sym_true] = ACTIONS(1290), + [sym_false] = ACTIONS(1290), + [anon_sym_NULL] = ACTIONS(1290), + [anon_sym_nullptr] = ACTIONS(1290), [sym_comment] = ACTIONS(3), }, - [STATE(321)] = { - [sym_attribute_declaration] = STATE(369), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(155), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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(254)] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1326), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1326), + [aux_sym_preproc_embed_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym___attribute] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [anon_sym__Nonnull] = ACTIONS(1326), + [anon_sym_alignas] = ACTIONS(1326), + [anon_sym__Alignas] = ACTIONS(1326), + [aux_sym_primitive_type_token1] = ACTIONS(1326), + [anon_sym__BitInt] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym_static_assert] = ACTIONS(1326), + [anon_sym__Static_assert] = ACTIONS(1326), + [anon_sym_typeof] = ACTIONS(1326), + [anon_sym_typeof_unqual] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [anon_sym___asm] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [STATE(322)] = { - [ts_builtin_sym_end] = ACTIONS(1414), - [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(1414), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_SEMI] = ACTIONS(1414), - [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_LBRACK_LBRACK] = ACTIONS(1414), - [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(1414), - [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_const] = 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_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_DASH_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1414), - [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(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(1416), - [sym_false] = ACTIONS(1416), - [anon_sym_NULL] = ACTIONS(1416), - [anon_sym_nullptr] = ACTIONS(1416), + [STATE(255)] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = 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), }, - [STATE(323)] = { - [sym_attribute_declaration] = STATE(369), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(158), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), + [STATE(256)] = { + [sym_identifier] = ACTIONS(1222), + [aux_sym_preproc_include_token1] = ACTIONS(1222), + [aux_sym_preproc_def_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1222), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1222), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1222), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1222), + [anon_sym__Static_assert] = ACTIONS(1222), + [anon_sym_typeof] = ACTIONS(1222), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(257)] = { + [sym_identifier] = ACTIONS(1250), + [aux_sym_preproc_include_token1] = ACTIONS(1250), + [aux_sym_preproc_def_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1250), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1250), + [aux_sym_preproc_embed_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), + [aux_sym_primitive_type_token1] = ACTIONS(1250), + [anon_sym__BitInt] = 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_static_assert] = ACTIONS(1250), + [anon_sym__Static_assert] = ACTIONS(1250), + [anon_sym_typeof] = ACTIONS(1250), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(258)] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1404), + [aux_sym_preproc_embed_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_LBRACK_LBRACK] = ACTIONS(1406), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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(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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1404), + [anon_sym__BitInt] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = 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_static_assert] = ACTIONS(1404), + [anon_sym__Static_assert] = ACTIONS(1404), + [anon_sym_typeof] = ACTIONS(1404), + [anon_sym_typeof_unqual] = 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(324)] = { - [ts_builtin_sym_end] = ACTIONS(1304), - [sym_identifier] = ACTIONS(1302), - [aux_sym_preproc_include_token1] = ACTIONS(1302), - [aux_sym_preproc_def_token1] = ACTIONS(1302), - [aux_sym_preproc_if_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), - [sym_preproc_directive] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1302), - [anon_sym_PLUS] = ACTIONS(1302), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_AMP] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym___extension__] = ACTIONS(1302), - [anon_sym_typedef] = ACTIONS(1302), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym___attribute__] = ACTIONS(1302), - [anon_sym___attribute] = ACTIONS(1302), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), - [anon_sym___declspec] = ACTIONS(1302), - [anon_sym___cdecl] = ACTIONS(1302), - [anon_sym___clrcall] = ACTIONS(1302), - [anon_sym___stdcall] = ACTIONS(1302), - [anon_sym___fastcall] = ACTIONS(1302), - [anon_sym___thiscall] = ACTIONS(1302), - [anon_sym___vectorcall] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_signed] = ACTIONS(1302), - [anon_sym_unsigned] = ACTIONS(1302), - [anon_sym_long] = ACTIONS(1302), - [anon_sym_short] = ACTIONS(1302), - [anon_sym_static] = ACTIONS(1302), - [anon_sym_auto] = ACTIONS(1302), - [anon_sym_register] = ACTIONS(1302), - [anon_sym_inline] = ACTIONS(1302), - [anon_sym___inline] = ACTIONS(1302), - [anon_sym___inline__] = ACTIONS(1302), - [anon_sym___forceinline] = ACTIONS(1302), - [anon_sym_thread_local] = ACTIONS(1302), - [anon_sym___thread] = ACTIONS(1302), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_constexpr] = ACTIONS(1302), - [anon_sym_volatile] = ACTIONS(1302), - [anon_sym_restrict] = ACTIONS(1302), - [anon_sym___restrict__] = ACTIONS(1302), - [anon_sym__Atomic] = ACTIONS(1302), - [anon_sym__Noreturn] = ACTIONS(1302), - [anon_sym_noreturn] = ACTIONS(1302), - [anon_sym__Nonnull] = ACTIONS(1302), - [anon_sym_alignas] = ACTIONS(1302), - [anon_sym__Alignas] = ACTIONS(1302), - [sym_primitive_type] = ACTIONS(1302), - [anon_sym_enum] = ACTIONS(1302), - [anon_sym_struct] = ACTIONS(1302), - [anon_sym_union] = ACTIONS(1302), - [anon_sym_if] = ACTIONS(1302), - [anon_sym_switch] = ACTIONS(1302), - [anon_sym_case] = ACTIONS(1302), - [anon_sym_default] = ACTIONS(1302), - [anon_sym_while] = ACTIONS(1302), - [anon_sym_do] = ACTIONS(1302), - [anon_sym_for] = ACTIONS(1302), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1302), - [anon_sym_continue] = ACTIONS(1302), - [anon_sym_goto] = ACTIONS(1302), - [anon_sym_DASH_DASH] = ACTIONS(1304), - [anon_sym_PLUS_PLUS] = ACTIONS(1304), - [anon_sym_sizeof] = ACTIONS(1302), - [anon_sym___alignof__] = ACTIONS(1302), - [anon_sym___alignof] = ACTIONS(1302), - [anon_sym__alignof] = ACTIONS(1302), - [anon_sym_alignof] = ACTIONS(1302), - [anon_sym__Alignof] = ACTIONS(1302), - [anon_sym_offsetof] = ACTIONS(1302), - [anon_sym__Generic] = ACTIONS(1302), - [anon_sym_asm] = ACTIONS(1302), - [anon_sym___asm__] = ACTIONS(1302), - [anon_sym___asm] = ACTIONS(1302), - [sym_number_literal] = ACTIONS(1304), - [anon_sym_L_SQUOTE] = ACTIONS(1304), - [anon_sym_u_SQUOTE] = ACTIONS(1304), - [anon_sym_U_SQUOTE] = ACTIONS(1304), - [anon_sym_u8_SQUOTE] = ACTIONS(1304), - [anon_sym_SQUOTE] = ACTIONS(1304), - [anon_sym_L_DQUOTE] = ACTIONS(1304), - [anon_sym_u_DQUOTE] = ACTIONS(1304), - [anon_sym_U_DQUOTE] = ACTIONS(1304), - [anon_sym_u8_DQUOTE] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_true] = ACTIONS(1302), - [sym_false] = ACTIONS(1302), - [anon_sym_NULL] = ACTIONS(1302), - [anon_sym_nullptr] = ACTIONS(1302), + [STATE(259)] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1382), + [aux_sym_preproc_embed_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___attribute] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym__Nonnull] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [aux_sym_primitive_type_token1] = ACTIONS(1382), + [anon_sym__BitInt] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym_static_assert] = ACTIONS(1382), + [anon_sym__Static_assert] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1382), + [anon_sym_typeof_unqual] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [anon_sym___asm] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [STATE(325)] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym___attribute] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [anon_sym__Nonnull] = ACTIONS(1306), - [anon_sym_alignas] = ACTIONS(1306), - [anon_sym__Alignas] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [anon_sym___asm] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [STATE(260)] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1386), + [aux_sym_preproc_embed_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___attribute] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym__Nonnull] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [aux_sym_primitive_type_token1] = ACTIONS(1386), + [anon_sym__BitInt] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym_static_assert] = ACTIONS(1386), + [anon_sym__Static_assert] = ACTIONS(1386), + [anon_sym_typeof] = ACTIONS(1386), + [anon_sym_typeof_unqual] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [anon_sym___asm] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [STATE(326)] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym___attribute] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [anon_sym__Nonnull] = ACTIONS(1314), - [anon_sym_alignas] = ACTIONS(1314), - [anon_sym__Alignas] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [anon_sym___asm] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [STATE(261)] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1460), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1460), + [anon_sym__BitInt] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = 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_static_assert] = ACTIONS(1460), + [anon_sym__Static_assert] = ACTIONS(1460), + [anon_sym_typeof] = ACTIONS(1460), + [anon_sym_typeof_unqual] = 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(327)] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym___attribute] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [anon_sym__Nonnull] = ACTIONS(1318), - [anon_sym_alignas] = ACTIONS(1318), - [anon_sym__Alignas] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [anon_sym___asm] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [STATE(262)] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1456), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1456), + [anon_sym__BitInt] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = 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_static_assert] = ACTIONS(1456), + [anon_sym__Static_assert] = ACTIONS(1456), + [anon_sym_typeof] = ACTIONS(1456), + [anon_sym_typeof_unqual] = 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(328)] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym___attribute] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [anon_sym__Nonnull] = ACTIONS(1322), - [anon_sym_alignas] = ACTIONS(1322), - [anon_sym__Alignas] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [anon_sym___asm] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [STATE(263)] = { + [sym_identifier] = ACTIONS(1460), + [aux_sym_preproc_include_token1] = ACTIONS(1460), + [aux_sym_preproc_def_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1460), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1460), + [anon_sym__BitInt] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = 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_static_assert] = ACTIONS(1460), + [anon_sym__Static_assert] = ACTIONS(1460), + [anon_sym_typeof] = ACTIONS(1460), + [anon_sym_typeof_unqual] = 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(329)] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym___attribute] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [anon_sym__Nonnull] = ACTIONS(1326), - [anon_sym_alignas] = ACTIONS(1326), - [anon_sym__Alignas] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [anon_sym___asm] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [STATE(264)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1464), + [aux_sym_preproc_embed_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_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [aux_sym_primitive_type_token1] = ACTIONS(1464), + [anon_sym__BitInt] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym_static_assert] = ACTIONS(1464), + [anon_sym__Static_assert] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1464), + [anon_sym_typeof_unqual] = 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(330)] = { - [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_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_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(265)] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1362), + [aux_sym_preproc_embed_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___attribute] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym__Nonnull] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [aux_sym_primitive_type_token1] = ACTIONS(1362), + [anon_sym__BitInt] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym_static_assert] = ACTIONS(1362), + [anon_sym__Static_assert] = ACTIONS(1362), + [anon_sym_typeof] = ACTIONS(1362), + [anon_sym_typeof_unqual] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [anon_sym___asm] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [STATE(331)] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym___attribute] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [anon_sym__Nonnull] = ACTIONS(1330), - [anon_sym_alignas] = ACTIONS(1330), - [anon_sym__Alignas] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [anon_sym___asm] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [STATE(332)] = { - [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_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_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(333)] = { - [sym_attribute_declaration] = STATE(342), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(236), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(266)] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1390), + [aux_sym_preproc_embed_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___attribute] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym__Nonnull] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [aux_sym_primitive_type_token1] = ACTIONS(1390), + [anon_sym__BitInt] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym_static_assert] = ACTIONS(1390), + [anon_sym__Static_assert] = ACTIONS(1390), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_typeof_unqual] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [anon_sym___asm] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [STATE(334)] = { - [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), + [STATE(267)] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1358), + [aux_sym_preproc_embed_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___attribute] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym__Nonnull] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [aux_sym_primitive_type_token1] = ACTIONS(1358), + [anon_sym__BitInt] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym_static_assert] = ACTIONS(1358), + [anon_sym__Static_assert] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_typeof_unqual] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [anon_sym___asm] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [STATE(335)] = { - [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(268)] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1370), + [aux_sym_preproc_embed_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token2] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___attribute] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym__Nonnull] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [aux_sym_primitive_type_token1] = ACTIONS(1370), + [anon_sym__BitInt] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym_static_assert] = ACTIONS(1370), + [anon_sym__Static_assert] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_typeof_unqual] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [anon_sym___asm] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [STATE(336)] = { - [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(269)] = { + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1386), + [aux_sym_preproc_embed_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token2] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___attribute] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym__Nonnull] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [aux_sym_primitive_type_token1] = ACTIONS(1386), + [anon_sym__BitInt] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym_static_assert] = ACTIONS(1386), + [anon_sym__Static_assert] = ACTIONS(1386), + [anon_sym_typeof] = ACTIONS(1386), + [anon_sym_typeof_unqual] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [anon_sym___asm] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [STATE(337)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(1888), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(270)] = { + [sym_identifier] = ACTIONS(1404), + [aux_sym_preproc_include_token1] = ACTIONS(1404), + [aux_sym_preproc_def_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1404), + [aux_sym_preproc_embed_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_LBRACK_LBRACK] = ACTIONS(1406), - [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(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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1404), + [anon_sym__BitInt] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = 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_static_assert] = ACTIONS(1404), + [anon_sym__Static_assert] = ACTIONS(1404), + [anon_sym_typeof] = ACTIONS(1404), + [anon_sym_typeof_unqual] = 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(338)] = { - [sym_attribute_declaration] = STATE(338), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(167), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1447), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_case] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1459), - [anon_sym_do] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1474), - [anon_sym_goto] = ACTIONS(1477), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1489), - [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(1495), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym___asm__] = ACTIONS(1501), - [anon_sym___asm] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [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(1513), - [sym_false] = ACTIONS(1513), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [STATE(271)] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1408), + [aux_sym_preproc_embed_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token2] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___attribute] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [anon_sym__Nonnull] = ACTIONS(1408), + [anon_sym_alignas] = ACTIONS(1408), + [anon_sym__Alignas] = ACTIONS(1408), + [aux_sym_primitive_type_token1] = ACTIONS(1408), + [anon_sym__BitInt] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym_static_assert] = ACTIONS(1408), + [anon_sym__Static_assert] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof_unqual] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [anon_sym___asm] = ACTIONS(1408), + [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(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, - [STATE(339)] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_identifier] = ACTIONS(1282), - [aux_sym_preproc_include_token1] = ACTIONS(1282), - [aux_sym_preproc_def_token1] = ACTIONS(1282), - [aux_sym_preproc_if_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1282), - [sym_preproc_directive] = ACTIONS(1282), - [anon_sym_LPAREN2] = ACTIONS(1284), - [anon_sym_BANG] = ACTIONS(1284), - [anon_sym_TILDE] = ACTIONS(1284), - [anon_sym_DASH] = ACTIONS(1282), - [anon_sym_PLUS] = ACTIONS(1282), - [anon_sym_STAR] = ACTIONS(1284), - [anon_sym_AMP] = ACTIONS(1284), - [anon_sym_SEMI] = ACTIONS(1284), - [anon_sym___extension__] = ACTIONS(1282), - [anon_sym_typedef] = ACTIONS(1282), - [anon_sym_extern] = ACTIONS(1282), - [anon_sym___attribute__] = ACTIONS(1282), - [anon_sym___attribute] = ACTIONS(1282), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1284), - [anon_sym___declspec] = ACTIONS(1282), - [anon_sym___cdecl] = ACTIONS(1282), - [anon_sym___clrcall] = ACTIONS(1282), - [anon_sym___stdcall] = ACTIONS(1282), - [anon_sym___fastcall] = ACTIONS(1282), - [anon_sym___thiscall] = ACTIONS(1282), - [anon_sym___vectorcall] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_signed] = ACTIONS(1282), - [anon_sym_unsigned] = ACTIONS(1282), - [anon_sym_long] = ACTIONS(1282), - [anon_sym_short] = ACTIONS(1282), - [anon_sym_static] = ACTIONS(1282), - [anon_sym_auto] = ACTIONS(1282), - [anon_sym_register] = ACTIONS(1282), - [anon_sym_inline] = ACTIONS(1282), - [anon_sym___inline] = ACTIONS(1282), - [anon_sym___inline__] = ACTIONS(1282), - [anon_sym___forceinline] = ACTIONS(1282), - [anon_sym_thread_local] = ACTIONS(1282), - [anon_sym___thread] = ACTIONS(1282), - [anon_sym_const] = ACTIONS(1282), - [anon_sym_constexpr] = ACTIONS(1282), - [anon_sym_volatile] = ACTIONS(1282), - [anon_sym_restrict] = ACTIONS(1282), - [anon_sym___restrict__] = ACTIONS(1282), - [anon_sym__Atomic] = ACTIONS(1282), - [anon_sym__Noreturn] = ACTIONS(1282), - [anon_sym_noreturn] = ACTIONS(1282), - [anon_sym__Nonnull] = ACTIONS(1282), - [anon_sym_alignas] = ACTIONS(1282), - [anon_sym__Alignas] = ACTIONS(1282), - [sym_primitive_type] = ACTIONS(1282), - [anon_sym_enum] = ACTIONS(1282), - [anon_sym_struct] = ACTIONS(1282), - [anon_sym_union] = ACTIONS(1282), - [anon_sym_if] = ACTIONS(1282), - [anon_sym_switch] = ACTIONS(1282), - [anon_sym_case] = ACTIONS(1282), - [anon_sym_default] = ACTIONS(1282), - [anon_sym_while] = ACTIONS(1282), - [anon_sym_do] = ACTIONS(1282), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(1282), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_goto] = ACTIONS(1282), - [anon_sym_DASH_DASH] = ACTIONS(1284), - [anon_sym_PLUS_PLUS] = ACTIONS(1284), - [anon_sym_sizeof] = ACTIONS(1282), - [anon_sym___alignof__] = ACTIONS(1282), - [anon_sym___alignof] = ACTIONS(1282), - [anon_sym__alignof] = ACTIONS(1282), - [anon_sym_alignof] = ACTIONS(1282), - [anon_sym__Alignof] = ACTIONS(1282), - [anon_sym_offsetof] = ACTIONS(1282), - [anon_sym__Generic] = ACTIONS(1282), - [anon_sym_asm] = ACTIONS(1282), - [anon_sym___asm__] = ACTIONS(1282), - [anon_sym___asm] = ACTIONS(1282), - [sym_number_literal] = ACTIONS(1284), - [anon_sym_L_SQUOTE] = ACTIONS(1284), - [anon_sym_u_SQUOTE] = ACTIONS(1284), - [anon_sym_U_SQUOTE] = ACTIONS(1284), - [anon_sym_u8_SQUOTE] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1284), - [anon_sym_L_DQUOTE] = ACTIONS(1284), - [anon_sym_u_DQUOTE] = ACTIONS(1284), - [anon_sym_U_DQUOTE] = ACTIONS(1284), - [anon_sym_u8_DQUOTE] = ACTIONS(1284), - [anon_sym_DQUOTE] = ACTIONS(1284), - [sym_true] = ACTIONS(1282), - [sym_false] = ACTIONS(1282), - [anon_sym_NULL] = ACTIONS(1282), - [anon_sym_nullptr] = ACTIONS(1282), + [STATE(272)] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1440), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1440), + [anon_sym__BitInt] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = 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_static_assert] = ACTIONS(1440), + [anon_sym__Static_assert] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_typeof_unqual] = 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(340)] = { - [sym_attribute_declaration] = STATE(369), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(146), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(369), - [sym_identifier] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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(273)] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1366), + [aux_sym_preproc_embed_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___attribute] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym__Nonnull] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [aux_sym_primitive_type_token1] = ACTIONS(1366), + [anon_sym__BitInt] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym_static_assert] = ACTIONS(1366), + [anon_sym__Static_assert] = ACTIONS(1366), + [anon_sym_typeof] = ACTIONS(1366), + [anon_sym_typeof_unqual] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [anon_sym___asm] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [STATE(341)] = { - [ts_builtin_sym_end] = ACTIONS(1288), - [sym_identifier] = ACTIONS(1286), - [aux_sym_preproc_include_token1] = ACTIONS(1286), - [aux_sym_preproc_def_token1] = ACTIONS(1286), - [aux_sym_preproc_if_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1286), - [sym_preproc_directive] = ACTIONS(1286), - [anon_sym_LPAREN2] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1288), - [anon_sym_TILDE] = ACTIONS(1288), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym___extension__] = ACTIONS(1286), - [anon_sym_typedef] = ACTIONS(1286), - [anon_sym_extern] = ACTIONS(1286), - [anon_sym___attribute__] = ACTIONS(1286), - [anon_sym___attribute] = ACTIONS(1286), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1288), - [anon_sym___declspec] = ACTIONS(1286), - [anon_sym___cdecl] = ACTIONS(1286), - [anon_sym___clrcall] = ACTIONS(1286), - [anon_sym___stdcall] = ACTIONS(1286), - [anon_sym___fastcall] = ACTIONS(1286), - [anon_sym___thiscall] = ACTIONS(1286), - [anon_sym___vectorcall] = ACTIONS(1286), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_signed] = ACTIONS(1286), - [anon_sym_unsigned] = ACTIONS(1286), - [anon_sym_long] = ACTIONS(1286), - [anon_sym_short] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1286), - [anon_sym_auto] = ACTIONS(1286), - [anon_sym_register] = ACTIONS(1286), - [anon_sym_inline] = ACTIONS(1286), - [anon_sym___inline] = ACTIONS(1286), - [anon_sym___inline__] = ACTIONS(1286), - [anon_sym___forceinline] = ACTIONS(1286), - [anon_sym_thread_local] = ACTIONS(1286), - [anon_sym___thread] = ACTIONS(1286), - [anon_sym_const] = ACTIONS(1286), - [anon_sym_constexpr] = ACTIONS(1286), - [anon_sym_volatile] = ACTIONS(1286), - [anon_sym_restrict] = ACTIONS(1286), - [anon_sym___restrict__] = ACTIONS(1286), - [anon_sym__Atomic] = ACTIONS(1286), - [anon_sym__Noreturn] = ACTIONS(1286), - [anon_sym_noreturn] = ACTIONS(1286), - [anon_sym__Nonnull] = ACTIONS(1286), - [anon_sym_alignas] = ACTIONS(1286), - [anon_sym__Alignas] = ACTIONS(1286), - [sym_primitive_type] = ACTIONS(1286), - [anon_sym_enum] = ACTIONS(1286), - [anon_sym_struct] = ACTIONS(1286), - [anon_sym_union] = ACTIONS(1286), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_switch] = ACTIONS(1286), - [anon_sym_case] = ACTIONS(1286), - [anon_sym_default] = ACTIONS(1286), - [anon_sym_while] = ACTIONS(1286), - [anon_sym_do] = ACTIONS(1286), - [anon_sym_for] = ACTIONS(1286), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_break] = ACTIONS(1286), - [anon_sym_continue] = ACTIONS(1286), - [anon_sym_goto] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1288), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_sizeof] = ACTIONS(1286), - [anon_sym___alignof__] = ACTIONS(1286), - [anon_sym___alignof] = ACTIONS(1286), - [anon_sym__alignof] = ACTIONS(1286), - [anon_sym_alignof] = ACTIONS(1286), - [anon_sym__Alignof] = ACTIONS(1286), - [anon_sym_offsetof] = ACTIONS(1286), - [anon_sym__Generic] = ACTIONS(1286), - [anon_sym_asm] = ACTIONS(1286), - [anon_sym___asm__] = ACTIONS(1286), - [anon_sym___asm] = ACTIONS(1286), - [sym_number_literal] = ACTIONS(1288), - [anon_sym_L_SQUOTE] = ACTIONS(1288), - [anon_sym_u_SQUOTE] = ACTIONS(1288), - [anon_sym_U_SQUOTE] = ACTIONS(1288), - [anon_sym_u8_SQUOTE] = ACTIONS(1288), - [anon_sym_SQUOTE] = ACTIONS(1288), - [anon_sym_L_DQUOTE] = ACTIONS(1288), - [anon_sym_u_DQUOTE] = ACTIONS(1288), - [anon_sym_U_DQUOTE] = ACTIONS(1288), - [anon_sym_u8_DQUOTE] = ACTIONS(1288), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_true] = ACTIONS(1286), - [sym_false] = ACTIONS(1286), - [anon_sym_NULL] = ACTIONS(1286), - [anon_sym_nullptr] = ACTIONS(1286), + [STATE(274)] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1374), + [aux_sym_preproc_embed_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token2] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___attribute] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym__Nonnull] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [aux_sym_primitive_type_token1] = ACTIONS(1374), + [anon_sym__BitInt] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym_static_assert] = ACTIONS(1374), + [anon_sym__Static_assert] = ACTIONS(1374), + [anon_sym_typeof] = ACTIONS(1374), + [anon_sym_typeof_unqual] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [anon_sym___asm] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [STATE(342)] = { - [sym_attribute_declaration] = STATE(338), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(167), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(275)] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1378), + [aux_sym_preproc_embed_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token2] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___attribute] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym__Nonnull] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [aux_sym_primitive_type_token1] = ACTIONS(1378), + [anon_sym__BitInt] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym_static_assert] = ACTIONS(1378), + [anon_sym__Static_assert] = ACTIONS(1378), + [anon_sym_typeof] = ACTIONS(1378), + [anon_sym_typeof_unqual] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [anon_sym___asm] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [STATE(343)] = { - [sym_attribute_declaration] = STATE(367), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(276)] = { + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1382), + [aux_sym_preproc_embed_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token2] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___attribute] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym__Nonnull] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [aux_sym_primitive_type_token1] = ACTIONS(1382), + [anon_sym__BitInt] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym_static_assert] = ACTIONS(1382), + [anon_sym__Static_assert] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1382), + [anon_sym_typeof_unqual] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [anon_sym___asm] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [STATE(344)] = { - [sym_attribute_declaration] = STATE(367), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(90), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(277)] = { + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1390), + [aux_sym_preproc_embed_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token2] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___attribute] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym__Nonnull] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [aux_sym_primitive_type_token1] = ACTIONS(1390), + [anon_sym__BitInt] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym_static_assert] = ACTIONS(1390), + [anon_sym__Static_assert] = ACTIONS(1390), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_typeof_unqual] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [anon_sym___asm] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [STATE(345)] = { - [sym_attribute_declaration] = STATE(345), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(114), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(345), - [sym_identifier] = ACTIONS(1521), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_case] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1542), - [anon_sym_do] = ACTIONS(1545), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1557), - [anon_sym_goto] = ACTIONS(1560), - [anon_sym___try] = ACTIONS(1563), - [anon_sym___leave] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1489), - [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(1495), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym___asm__] = ACTIONS(1501), - [anon_sym___asm] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [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(1513), - [sym_false] = ACTIONS(1513), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [STATE(278)] = { + [sym_identifier] = ACTIONS(1464), + [aux_sym_preproc_include_token1] = ACTIONS(1464), + [aux_sym_preproc_def_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1464), + [aux_sym_preproc_embed_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_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [aux_sym_primitive_type_token1] = ACTIONS(1464), + [anon_sym__BitInt] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym___try] = ACTIONS(1464), + [anon_sym___leave] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym_static_assert] = ACTIONS(1464), + [anon_sym__Static_assert] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1464), + [anon_sym_typeof_unqual] = 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(346)] = { - [sym_attribute_declaration] = STATE(367), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(85), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(279)] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1362), + [aux_sym_preproc_embed_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___attribute] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym__Nonnull] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [aux_sym_primitive_type_token1] = ACTIONS(1362), + [anon_sym__BitInt] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym_static_assert] = ACTIONS(1362), + [anon_sym__Static_assert] = ACTIONS(1362), + [anon_sym_typeof] = ACTIONS(1362), + [anon_sym_typeof_unqual] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [anon_sym___asm] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [STATE(347)] = { - [sym_attribute_declaration] = STATE(367), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(92), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(367), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(280)] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1354), + [aux_sym_preproc_embed_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___attribute] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym__Nonnull] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [aux_sym_primitive_type_token1] = ACTIONS(1354), + [anon_sym__BitInt] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym_static_assert] = ACTIONS(1354), + [anon_sym__Static_assert] = ACTIONS(1354), + [anon_sym_typeof] = ACTIONS(1354), + [anon_sym_typeof_unqual] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [anon_sym___asm] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [STATE(348)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(398), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(281)] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1394), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1394), + [aux_sym_preproc_embed_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___attribute] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym__Nonnull] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [aux_sym_primitive_type_token1] = ACTIONS(1394), + [anon_sym__BitInt] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym_static_assert] = ACTIONS(1394), + [anon_sym__Static_assert] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(1394), + [anon_sym_typeof_unqual] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [anon_sym___asm] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1397), + [anon_sym_L_SQUOTE] = ACTIONS(1397), + [anon_sym_u_SQUOTE] = ACTIONS(1397), + [anon_sym_U_SQUOTE] = ACTIONS(1397), + [anon_sym_u8_SQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_L_DQUOTE] = ACTIONS(1397), + [anon_sym_u_DQUOTE] = ACTIONS(1397), + [anon_sym_U_DQUOTE] = ACTIONS(1397), + [anon_sym_u8_DQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [STATE(349)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(166), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(282)] = { + [sym_identifier] = ACTIONS(1440), + [aux_sym_preproc_include_token1] = ACTIONS(1440), + [aux_sym_preproc_def_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1440), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1440), + [anon_sym__BitInt] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = 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_static_assert] = ACTIONS(1440), + [anon_sym__Static_assert] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_typeof_unqual] = 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(350)] = { - [sym_attribute_declaration] = STATE(350), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(252), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(1569), - [anon_sym_LPAREN2] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1578), - [anon_sym_case] = ACTIONS(1581), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1593), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym___try] = ACTIONS(1608), - [anon_sym___leave] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1489), - [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(1495), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym___asm__] = ACTIONS(1501), - [anon_sym___asm] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [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(1513), - [sym_false] = ACTIONS(1513), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [STATE(283)] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1346), + [aux_sym_preproc_embed_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___attribute] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym__Nonnull] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [aux_sym_primitive_type_token1] = ACTIONS(1346), + [anon_sym__BitInt] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym_static_assert] = ACTIONS(1346), + [anon_sym__Static_assert] = ACTIONS(1346), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_typeof_unqual] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [anon_sym___asm] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [STATE(351)] = { - [ts_builtin_sym_end] = ACTIONS(1292), - [sym_identifier] = ACTIONS(1290), - [aux_sym_preproc_include_token1] = ACTIONS(1290), - [aux_sym_preproc_def_token1] = ACTIONS(1290), - [aux_sym_preproc_if_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1290), - [sym_preproc_directive] = ACTIONS(1290), - [anon_sym_LPAREN2] = ACTIONS(1292), - [anon_sym_BANG] = ACTIONS(1292), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym___extension__] = ACTIONS(1290), - [anon_sym_typedef] = ACTIONS(1290), - [anon_sym_extern] = ACTIONS(1290), - [anon_sym___attribute__] = ACTIONS(1290), - [anon_sym___attribute] = ACTIONS(1290), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1292), - [anon_sym___declspec] = ACTIONS(1290), - [anon_sym___cdecl] = ACTIONS(1290), - [anon_sym___clrcall] = ACTIONS(1290), - [anon_sym___stdcall] = ACTIONS(1290), - [anon_sym___fastcall] = ACTIONS(1290), - [anon_sym___thiscall] = ACTIONS(1290), - [anon_sym___vectorcall] = ACTIONS(1290), - [anon_sym_LBRACE] = ACTIONS(1292), - [anon_sym_signed] = ACTIONS(1290), - [anon_sym_unsigned] = ACTIONS(1290), - [anon_sym_long] = ACTIONS(1290), - [anon_sym_short] = ACTIONS(1290), - [anon_sym_static] = ACTIONS(1290), - [anon_sym_auto] = ACTIONS(1290), - [anon_sym_register] = ACTIONS(1290), - [anon_sym_inline] = ACTIONS(1290), - [anon_sym___inline] = ACTIONS(1290), - [anon_sym___inline__] = ACTIONS(1290), - [anon_sym___forceinline] = ACTIONS(1290), - [anon_sym_thread_local] = ACTIONS(1290), - [anon_sym___thread] = ACTIONS(1290), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_constexpr] = ACTIONS(1290), - [anon_sym_volatile] = ACTIONS(1290), - [anon_sym_restrict] = ACTIONS(1290), - [anon_sym___restrict__] = ACTIONS(1290), - [anon_sym__Atomic] = ACTIONS(1290), - [anon_sym__Noreturn] = ACTIONS(1290), - [anon_sym_noreturn] = ACTIONS(1290), - [anon_sym__Nonnull] = ACTIONS(1290), - [anon_sym_alignas] = ACTIONS(1290), - [anon_sym__Alignas] = ACTIONS(1290), - [sym_primitive_type] = ACTIONS(1290), - [anon_sym_enum] = ACTIONS(1290), - [anon_sym_struct] = ACTIONS(1290), - [anon_sym_union] = ACTIONS(1290), - [anon_sym_if] = ACTIONS(1290), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1290), - [anon_sym_while] = ACTIONS(1290), - [anon_sym_do] = ACTIONS(1290), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_return] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1290), - [anon_sym_continue] = ACTIONS(1290), - [anon_sym_goto] = ACTIONS(1290), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_sizeof] = ACTIONS(1290), - [anon_sym___alignof__] = ACTIONS(1290), - [anon_sym___alignof] = ACTIONS(1290), - [anon_sym__alignof] = ACTIONS(1290), - [anon_sym_alignof] = ACTIONS(1290), - [anon_sym__Alignof] = ACTIONS(1290), - [anon_sym_offsetof] = ACTIONS(1290), - [anon_sym__Generic] = ACTIONS(1290), - [anon_sym_asm] = ACTIONS(1290), - [anon_sym___asm__] = ACTIONS(1290), - [anon_sym___asm] = ACTIONS(1290), - [sym_number_literal] = ACTIONS(1292), - [anon_sym_L_SQUOTE] = ACTIONS(1292), - [anon_sym_u_SQUOTE] = ACTIONS(1292), - [anon_sym_U_SQUOTE] = ACTIONS(1292), - [anon_sym_u8_SQUOTE] = ACTIONS(1292), - [anon_sym_SQUOTE] = ACTIONS(1292), - [anon_sym_L_DQUOTE] = ACTIONS(1292), - [anon_sym_u_DQUOTE] = ACTIONS(1292), - [anon_sym_U_DQUOTE] = ACTIONS(1292), - [anon_sym_u8_DQUOTE] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_true] = ACTIONS(1290), - [sym_false] = ACTIONS(1290), - [anon_sym_NULL] = ACTIONS(1290), - [anon_sym_nullptr] = ACTIONS(1290), + [STATE(284)] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1366), + [aux_sym_preproc_embed_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___attribute] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym__Nonnull] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [aux_sym_primitive_type_token1] = ACTIONS(1366), + [anon_sym__BitInt] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym_static_assert] = ACTIONS(1366), + [anon_sym__Static_assert] = ACTIONS(1366), + [anon_sym_typeof] = ACTIONS(1366), + [anon_sym_typeof_unqual] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [anon_sym___asm] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [STATE(352)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(155), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(285)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1452), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1452), + [anon_sym__BitInt] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = 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_static_assert] = ACTIONS(1452), + [anon_sym__Static_assert] = ACTIONS(1452), + [anon_sym_typeof] = ACTIONS(1452), + [anon_sym_typeof_unqual] = 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(353)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(158), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(286)] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1394), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1394), + [aux_sym_preproc_embed_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym___extension__] = ACTIONS(1394), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym___attribute] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1397), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym__Nonnull] = ACTIONS(1394), + [anon_sym_alignas] = ACTIONS(1394), + [anon_sym__Alignas] = ACTIONS(1394), + [aux_sym_primitive_type_token1] = ACTIONS(1394), + [anon_sym__BitInt] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1397), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym_static_assert] = ACTIONS(1394), + [anon_sym__Static_assert] = ACTIONS(1394), + [anon_sym_typeof] = ACTIONS(1394), + [anon_sym_typeof_unqual] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [anon_sym___asm] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1397), + [anon_sym_L_SQUOTE] = ACTIONS(1397), + [anon_sym_u_SQUOTE] = ACTIONS(1397), + [anon_sym_U_SQUOTE] = ACTIONS(1397), + [anon_sym_u8_SQUOTE] = ACTIONS(1397), + [anon_sym_SQUOTE] = ACTIONS(1397), + [anon_sym_L_DQUOTE] = ACTIONS(1397), + [anon_sym_u_DQUOTE] = ACTIONS(1397), + [anon_sym_U_DQUOTE] = ACTIONS(1397), + [anon_sym_u8_DQUOTE] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(1397), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [STATE(354)] = { - [ts_builtin_sym_end] = ACTIONS(1280), - [sym_identifier] = ACTIONS(1278), - [aux_sym_preproc_include_token1] = ACTIONS(1278), - [aux_sym_preproc_def_token1] = ACTIONS(1278), - [aux_sym_preproc_if_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1278), - [sym_preproc_directive] = ACTIONS(1278), - [anon_sym_LPAREN2] = ACTIONS(1280), - [anon_sym_BANG] = ACTIONS(1280), - [anon_sym_TILDE] = ACTIONS(1280), - [anon_sym_DASH] = ACTIONS(1278), - [anon_sym_PLUS] = ACTIONS(1278), - [anon_sym_STAR] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1280), - [anon_sym_SEMI] = ACTIONS(1280), - [anon_sym___extension__] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1278), - [anon_sym_extern] = ACTIONS(1278), - [anon_sym___attribute__] = ACTIONS(1278), - [anon_sym___attribute] = ACTIONS(1278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1280), - [anon_sym___declspec] = ACTIONS(1278), - [anon_sym___cdecl] = ACTIONS(1278), - [anon_sym___clrcall] = ACTIONS(1278), - [anon_sym___stdcall] = ACTIONS(1278), - [anon_sym___fastcall] = ACTIONS(1278), - [anon_sym___thiscall] = ACTIONS(1278), - [anon_sym___vectorcall] = ACTIONS(1278), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_signed] = ACTIONS(1278), - [anon_sym_unsigned] = ACTIONS(1278), - [anon_sym_long] = ACTIONS(1278), - [anon_sym_short] = ACTIONS(1278), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_auto] = ACTIONS(1278), - [anon_sym_register] = ACTIONS(1278), - [anon_sym_inline] = ACTIONS(1278), - [anon_sym___inline] = ACTIONS(1278), - [anon_sym___inline__] = ACTIONS(1278), - [anon_sym___forceinline] = ACTIONS(1278), - [anon_sym_thread_local] = ACTIONS(1278), - [anon_sym___thread] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1278), - [anon_sym_constexpr] = ACTIONS(1278), - [anon_sym_volatile] = ACTIONS(1278), - [anon_sym_restrict] = ACTIONS(1278), - [anon_sym___restrict__] = ACTIONS(1278), - [anon_sym__Atomic] = ACTIONS(1278), - [anon_sym__Noreturn] = ACTIONS(1278), - [anon_sym_noreturn] = ACTIONS(1278), - [anon_sym__Nonnull] = ACTIONS(1278), - [anon_sym_alignas] = ACTIONS(1278), - [anon_sym__Alignas] = ACTIONS(1278), - [sym_primitive_type] = ACTIONS(1278), - [anon_sym_enum] = ACTIONS(1278), - [anon_sym_struct] = ACTIONS(1278), - [anon_sym_union] = ACTIONS(1278), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(1278), - [anon_sym_case] = ACTIONS(1278), - [anon_sym_default] = ACTIONS(1278), - [anon_sym_while] = ACTIONS(1278), - [anon_sym_do] = ACTIONS(1278), - [anon_sym_for] = ACTIONS(1278), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1278), - [anon_sym_continue] = ACTIONS(1278), - [anon_sym_goto] = ACTIONS(1278), - [anon_sym_DASH_DASH] = ACTIONS(1280), - [anon_sym_PLUS_PLUS] = ACTIONS(1280), - [anon_sym_sizeof] = ACTIONS(1278), - [anon_sym___alignof__] = ACTIONS(1278), - [anon_sym___alignof] = ACTIONS(1278), - [anon_sym__alignof] = ACTIONS(1278), - [anon_sym_alignof] = ACTIONS(1278), - [anon_sym__Alignof] = ACTIONS(1278), - [anon_sym_offsetof] = ACTIONS(1278), - [anon_sym__Generic] = ACTIONS(1278), - [anon_sym_asm] = ACTIONS(1278), - [anon_sym___asm__] = ACTIONS(1278), - [anon_sym___asm] = ACTIONS(1278), - [sym_number_literal] = ACTIONS(1280), - [anon_sym_L_SQUOTE] = ACTIONS(1280), - [anon_sym_u_SQUOTE] = ACTIONS(1280), - [anon_sym_U_SQUOTE] = ACTIONS(1280), - [anon_sym_u8_SQUOTE] = ACTIONS(1280), - [anon_sym_SQUOTE] = ACTIONS(1280), - [anon_sym_L_DQUOTE] = ACTIONS(1280), - [anon_sym_u_DQUOTE] = ACTIONS(1280), - [anon_sym_U_DQUOTE] = ACTIONS(1280), - [anon_sym_u8_DQUOTE] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1280), - [sym_true] = ACTIONS(1278), - [sym_false] = ACTIONS(1278), - [anon_sym_NULL] = ACTIONS(1278), - [anon_sym_nullptr] = ACTIONS(1278), + [STATE(287)] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1412), + [aux_sym_preproc_embed_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_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_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), + [aux_sym_primitive_type_token1] = ACTIONS(1412), + [anon_sym__BitInt] = 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___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_static_assert] = ACTIONS(1412), + [anon_sym__Static_assert] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(1412), + [anon_sym_typeof_unqual] = 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(355)] = { - [sym_attribute_declaration] = STATE(350), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(252), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(350), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(288)] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1416), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1416), + [anon_sym__BitInt] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = 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_static_assert] = ACTIONS(1416), + [anon_sym__Static_assert] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_typeof_unqual] = 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(356)] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1614), - [aux_sym_preproc_include_token1] = ACTIONS(1614), - [aux_sym_preproc_def_token1] = ACTIONS(1614), - [aux_sym_preproc_if_token1] = ACTIONS(1614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1614), - [sym_preproc_directive] = ACTIONS(1614), - [anon_sym_LPAREN2] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_PLUS] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym___extension__] = ACTIONS(1614), - [anon_sym_typedef] = ACTIONS(1614), - [anon_sym_extern] = ACTIONS(1614), - [anon_sym___attribute__] = ACTIONS(1614), - [anon_sym___attribute] = ACTIONS(1614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1611), - [anon_sym___declspec] = ACTIONS(1614), - [anon_sym___cdecl] = ACTIONS(1614), - [anon_sym___clrcall] = ACTIONS(1614), - [anon_sym___stdcall] = ACTIONS(1614), - [anon_sym___fastcall] = ACTIONS(1614), - [anon_sym___thiscall] = ACTIONS(1614), - [anon_sym___vectorcall] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_signed] = ACTIONS(1614), - [anon_sym_unsigned] = ACTIONS(1614), - [anon_sym_long] = ACTIONS(1614), - [anon_sym_short] = ACTIONS(1614), - [anon_sym_static] = ACTIONS(1614), - [anon_sym_auto] = ACTIONS(1614), - [anon_sym_register] = ACTIONS(1614), - [anon_sym_inline] = ACTIONS(1614), - [anon_sym___inline] = ACTIONS(1614), - [anon_sym___inline__] = ACTIONS(1614), - [anon_sym___forceinline] = ACTIONS(1614), - [anon_sym_thread_local] = ACTIONS(1614), - [anon_sym___thread] = ACTIONS(1614), - [anon_sym_const] = ACTIONS(1614), - [anon_sym_constexpr] = ACTIONS(1614), - [anon_sym_volatile] = ACTIONS(1614), - [anon_sym_restrict] = ACTIONS(1614), - [anon_sym___restrict__] = ACTIONS(1614), - [anon_sym__Atomic] = ACTIONS(1614), - [anon_sym__Noreturn] = ACTIONS(1614), - [anon_sym_noreturn] = ACTIONS(1614), - [anon_sym__Nonnull] = ACTIONS(1614), - [anon_sym_alignas] = ACTIONS(1614), - [anon_sym__Alignas] = ACTIONS(1614), - [sym_primitive_type] = ACTIONS(1614), - [anon_sym_enum] = ACTIONS(1614), - [anon_sym_struct] = ACTIONS(1614), - [anon_sym_union] = ACTIONS(1614), - [anon_sym_if] = ACTIONS(1614), - [anon_sym_switch] = ACTIONS(1614), - [anon_sym_case] = ACTIONS(1614), - [anon_sym_default] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_do] = ACTIONS(1614), - [anon_sym_for] = ACTIONS(1614), - [anon_sym_return] = ACTIONS(1614), - [anon_sym_break] = ACTIONS(1614), - [anon_sym_continue] = ACTIONS(1614), - [anon_sym_goto] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_sizeof] = ACTIONS(1614), - [anon_sym___alignof__] = ACTIONS(1614), - [anon_sym___alignof] = ACTIONS(1614), - [anon_sym__alignof] = ACTIONS(1614), - [anon_sym_alignof] = ACTIONS(1614), - [anon_sym__Alignof] = ACTIONS(1614), - [anon_sym_offsetof] = ACTIONS(1614), - [anon_sym__Generic] = ACTIONS(1614), - [anon_sym_asm] = ACTIONS(1614), - [anon_sym___asm__] = ACTIONS(1614), - [anon_sym___asm] = ACTIONS(1614), - [sym_number_literal] = ACTIONS(1611), - [anon_sym_L_SQUOTE] = ACTIONS(1611), - [anon_sym_u_SQUOTE] = ACTIONS(1611), - [anon_sym_U_SQUOTE] = ACTIONS(1611), - [anon_sym_u8_SQUOTE] = ACTIONS(1611), - [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_L_DQUOTE] = ACTIONS(1611), - [anon_sym_u_DQUOTE] = ACTIONS(1611), - [anon_sym_U_DQUOTE] = ACTIONS(1611), - [anon_sym_u8_DQUOTE] = ACTIONS(1611), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym_true] = ACTIONS(1614), - [sym_false] = ACTIONS(1614), - [anon_sym_NULL] = ACTIONS(1614), - [anon_sym_nullptr] = ACTIONS(1614), + [STATE(289)] = { + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1370), + [aux_sym_preproc_embed_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___attribute] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym__Nonnull] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [aux_sym_primitive_type_token1] = ACTIONS(1370), + [anon_sym__BitInt] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym_static_assert] = ACTIONS(1370), + [anon_sym__Static_assert] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_typeof_unqual] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [anon_sym___asm] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [STATE(357)] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(148), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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(290)] = { + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1374), + [aux_sym_preproc_embed_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___attribute] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym__Nonnull] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [aux_sym_primitive_type_token1] = ACTIONS(1374), + [anon_sym__BitInt] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym_static_assert] = ACTIONS(1374), + [anon_sym__Static_assert] = ACTIONS(1374), + [anon_sym_typeof] = ACTIONS(1374), + [anon_sym_typeof_unqual] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [anon_sym___asm] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [STATE(358)] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(149), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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(291)] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1448), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1448), + [anon_sym__BitInt] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = 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_static_assert] = ACTIONS(1448), + [anon_sym__Static_assert] = ACTIONS(1448), + [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_typeof_unqual] = 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(359)] = { - [sym_attribute_declaration] = STATE(359), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(183), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(359), - [sym_identifier] = ACTIONS(1619), - [anon_sym_LPAREN2] = ACTIONS(1423), + [STATE(292)] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1420), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1420), + [anon_sym__BitInt] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = 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_static_assert] = ACTIONS(1420), + [anon_sym__Static_assert] = ACTIONS(1420), + [anon_sym_typeof] = ACTIONS(1420), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(293)] = { + [sym_identifier] = ACTIONS(1456), + [aux_sym_preproc_include_token1] = ACTIONS(1456), + [aux_sym_preproc_def_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1456), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1456), + [anon_sym__BitInt] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = 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_static_assert] = ACTIONS(1456), + [anon_sym__Static_assert] = ACTIONS(1456), + [anon_sym_typeof] = ACTIONS(1456), + [anon_sym_typeof_unqual] = 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(294)] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1424), + [aux_sym_preproc_embed_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(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_do] = ACTIONS(1643), - [anon_sym_for] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1655), - [anon_sym_goto] = ACTIONS(1658), - [anon_sym___try] = ACTIONS(1661), - [anon_sym___leave] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1489), - [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(1495), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym___asm__] = ACTIONS(1501), - [anon_sym___asm] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [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(1513), - [sym_false] = ACTIONS(1513), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1424), + [anon_sym__BitInt] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = 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_static_assert] = ACTIONS(1424), + [anon_sym__Static_assert] = ACTIONS(1424), + [anon_sym_typeof] = ACTIONS(1424), + [anon_sym_typeof_unqual] = 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(360)] = { - [sym_attribute_declaration] = STATE(360), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(252), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1423), + [STATE(295)] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1400), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1400), + [anon_sym__BitInt] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = 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_static_assert] = ACTIONS(1400), + [anon_sym__Static_assert] = ACTIONS(1400), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_typeof_unqual] = 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(296)] = { + [sym_identifier] = ACTIONS(1412), + [aux_sym_preproc_include_token1] = ACTIONS(1412), + [aux_sym_preproc_def_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1412), + [aux_sym_preproc_embed_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_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_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), + [aux_sym_primitive_type_token1] = ACTIONS(1412), + [anon_sym__BitInt] = 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___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_static_assert] = ACTIONS(1412), + [anon_sym__Static_assert] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(1412), + [anon_sym_typeof_unqual] = 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(297)] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1350), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1350), + [aux_sym_preproc_embed_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___attribute] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym__Nonnull] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [aux_sym_primitive_type_token1] = ACTIONS(1350), + [anon_sym__BitInt] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym_static_assert] = ACTIONS(1350), + [anon_sym__Static_assert] = ACTIONS(1350), + [anon_sym_typeof] = ACTIONS(1350), + [anon_sym_typeof_unqual] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [anon_sym___asm] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), + [sym_comment] = ACTIONS(3), + }, + [STATE(298)] = { + [sym_identifier] = ACTIONS(1416), + [aux_sym_preproc_include_token1] = ACTIONS(1416), + [aux_sym_preproc_def_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1416), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1416), + [anon_sym__BitInt] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = 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_static_assert] = ACTIONS(1416), + [anon_sym__Static_assert] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_typeof_unqual] = 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(299)] = { + [sym_identifier] = ACTIONS(1420), + [aux_sym_preproc_include_token1] = ACTIONS(1420), + [aux_sym_preproc_def_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1420), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1420), + [anon_sym__BitInt] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = 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_static_assert] = ACTIONS(1420), + [anon_sym__Static_assert] = ACTIONS(1420), + [anon_sym_typeof] = ACTIONS(1420), + [anon_sym_typeof_unqual] = 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), + }, + [STATE(300)] = { + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1378), + [aux_sym_preproc_embed_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), + [anon_sym_LPAREN2] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___attribute] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym__Nonnull] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [aux_sym_primitive_type_token1] = ACTIONS(1378), + [anon_sym__BitInt] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), + [anon_sym___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym_static_assert] = ACTIONS(1378), + [anon_sym__Static_assert] = ACTIONS(1378), + [anon_sym_typeof] = ACTIONS(1378), + [anon_sym_typeof_unqual] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [anon_sym___asm] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), + [sym_comment] = ACTIONS(3), + }, + [STATE(301)] = { + [sym_identifier] = ACTIONS(1424), + [aux_sym_preproc_include_token1] = ACTIONS(1424), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1424), + [aux_sym_preproc_embed_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(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym___extension__] = ACTIONS(1438), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1578), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1679), - [anon_sym_while] = ACTIONS(1682), - [anon_sym_do] = ACTIONS(1590), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_goto] = ACTIONS(1605), - [anon_sym___try] = ACTIONS(1688), - [anon_sym___leave] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1489), - [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(1495), - [anon_sym__Generic] = ACTIONS(1498), - [anon_sym_asm] = ACTIONS(1501), - [anon_sym___asm__] = ACTIONS(1501), - [anon_sym___asm] = ACTIONS(1501), - [sym_number_literal] = ACTIONS(1504), - [anon_sym_L_SQUOTE] = ACTIONS(1507), - [anon_sym_u_SQUOTE] = ACTIONS(1507), - [anon_sym_U_SQUOTE] = ACTIONS(1507), - [anon_sym_u8_SQUOTE] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1507), - [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(1513), - [sym_false] = ACTIONS(1513), - [anon_sym_NULL] = ACTIONS(1516), - [anon_sym_nullptr] = ACTIONS(1516), + [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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1424), + [anon_sym__BitInt] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = 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_static_assert] = ACTIONS(1424), + [anon_sym__Static_assert] = ACTIONS(1424), + [anon_sym_typeof] = ACTIONS(1424), + [anon_sym_typeof_unqual] = 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(361)] = { - [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_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_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(302)] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1358), + [aux_sym_preproc_embed_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___attribute] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym__Nonnull] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [aux_sym_primitive_type_token1] = ACTIONS(1358), + [anon_sym__BitInt] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym_static_assert] = ACTIONS(1358), + [anon_sym__Static_assert] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_typeof_unqual] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [anon_sym___asm] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [STATE(362)] = { - [sym_attribute_declaration] = STATE(342), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(147), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(303)] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1428), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1428), + [anon_sym__BitInt] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = 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_static_assert] = ACTIONS(1428), + [anon_sym__Static_assert] = ACTIONS(1428), + [anon_sym_typeof] = ACTIONS(1428), + [anon_sym_typeof_unqual] = 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(363)] = { - [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_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_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(304)] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1354), + [aux_sym_preproc_embed_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___attribute] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym__Nonnull] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [aux_sym_primitive_type_token1] = ACTIONS(1354), + [anon_sym__BitInt] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym_static_assert] = ACTIONS(1354), + [anon_sym__Static_assert] = ACTIONS(1354), + [anon_sym_typeof] = ACTIONS(1354), + [anon_sym_typeof_unqual] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [anon_sym___asm] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [STATE(364)] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(203), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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(305)] = { + [sym_identifier] = ACTIONS(1400), + [aux_sym_preproc_include_token1] = ACTIONS(1400), + [aux_sym_preproc_def_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1400), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1400), + [anon_sym__BitInt] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = 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_static_assert] = ACTIONS(1400), + [anon_sym__Static_assert] = ACTIONS(1400), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_typeof_unqual] = 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(365)] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(254), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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(306)] = { + [sym_identifier] = ACTIONS(1350), + [aux_sym_preproc_include_token1] = ACTIONS(1350), + [aux_sym_preproc_def_token1] = ACTIONS(1350), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1350), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1350), + [aux_sym_preproc_embed_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token1] = ACTIONS(1350), + [aux_sym_preproc_if_token2] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), + [sym_preproc_directive] = ACTIONS(1350), + [anon_sym_LPAREN2] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_TILDE] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym___extension__] = ACTIONS(1350), + [anon_sym_typedef] = ACTIONS(1350), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym___attribute__] = ACTIONS(1350), + [anon_sym___attribute] = ACTIONS(1350), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), + [anon_sym___declspec] = ACTIONS(1350), + [anon_sym___cdecl] = ACTIONS(1350), + [anon_sym___clrcall] = ACTIONS(1350), + [anon_sym___stdcall] = ACTIONS(1350), + [anon_sym___fastcall] = ACTIONS(1350), + [anon_sym___thiscall] = ACTIONS(1350), + [anon_sym___vectorcall] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_signed] = ACTIONS(1350), + [anon_sym_unsigned] = ACTIONS(1350), + [anon_sym_long] = ACTIONS(1350), + [anon_sym_short] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_auto] = ACTIONS(1350), + [anon_sym_register] = ACTIONS(1350), + [anon_sym_inline] = ACTIONS(1350), + [anon_sym___inline] = ACTIONS(1350), + [anon_sym___inline__] = ACTIONS(1350), + [anon_sym___forceinline] = ACTIONS(1350), + [anon_sym_thread_local] = ACTIONS(1350), + [anon_sym___thread] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_constexpr] = ACTIONS(1350), + [anon_sym_volatile] = ACTIONS(1350), + [anon_sym_restrict] = ACTIONS(1350), + [anon_sym___restrict__] = ACTIONS(1350), + [anon_sym__Atomic] = ACTIONS(1350), + [anon_sym__Noreturn] = ACTIONS(1350), + [anon_sym_noreturn] = ACTIONS(1350), + [anon_sym__Nonnull] = ACTIONS(1350), + [anon_sym_alignas] = ACTIONS(1350), + [anon_sym__Alignas] = ACTIONS(1350), + [aux_sym_primitive_type_token1] = ACTIONS(1350), + [anon_sym__BitInt] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_switch] = ACTIONS(1350), + [anon_sym_case] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_do] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_goto] = ACTIONS(1350), + [anon_sym___try] = ACTIONS(1350), + [anon_sym___leave] = ACTIONS(1350), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_sizeof] = ACTIONS(1350), + [anon_sym___alignof__] = ACTIONS(1350), + [anon_sym___alignof] = ACTIONS(1350), + [anon_sym__alignof] = ACTIONS(1350), + [anon_sym_alignof] = ACTIONS(1350), + [anon_sym__Alignof] = ACTIONS(1350), + [anon_sym_offsetof] = ACTIONS(1350), + [anon_sym_static_assert] = ACTIONS(1350), + [anon_sym__Static_assert] = ACTIONS(1350), + [anon_sym_typeof] = ACTIONS(1350), + [anon_sym_typeof_unqual] = ACTIONS(1350), + [anon_sym__Generic] = ACTIONS(1350), + [anon_sym_asm] = ACTIONS(1350), + [anon_sym___asm__] = ACTIONS(1350), + [anon_sym___asm] = ACTIONS(1350), + [sym_number_literal] = ACTIONS(1352), + [anon_sym_L_SQUOTE] = ACTIONS(1352), + [anon_sym_u_SQUOTE] = ACTIONS(1352), + [anon_sym_U_SQUOTE] = ACTIONS(1352), + [anon_sym_u8_SQUOTE] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_L_DQUOTE] = ACTIONS(1352), + [anon_sym_u_DQUOTE] = ACTIONS(1352), + [anon_sym_U_DQUOTE] = ACTIONS(1352), + [anon_sym_u8_DQUOTE] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1352), + [sym_true] = ACTIONS(1350), + [sym_false] = ACTIONS(1350), + [anon_sym_NULL] = ACTIONS(1350), + [anon_sym_nullptr] = ACTIONS(1350), [sym_comment] = ACTIONS(3), }, - [STATE(366)] = { - [sym_attribute_declaration] = STATE(342), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(198), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(307)] = { + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1360), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1358), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1358), + [aux_sym_preproc_embed_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym___attribute] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [anon_sym__Nonnull] = ACTIONS(1358), + [anon_sym_alignas] = ACTIONS(1358), + [anon_sym__Alignas] = ACTIONS(1358), + [aux_sym_primitive_type_token1] = ACTIONS(1358), + [anon_sym__BitInt] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym_static_assert] = ACTIONS(1358), + [anon_sym__Static_assert] = ACTIONS(1358), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_typeof_unqual] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [anon_sym___asm] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [STATE(367)] = { - [sym_attribute_declaration] = STATE(345), - [sym_compound_statement] = STATE(81), - [sym_attributed_statement] = STATE(81), - [sym_statement] = STATE(114), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_case_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym_seh_try_statement] = STATE(81), - [sym_seh_leave_statement] = STATE(81), - [sym_expression] = STATE(1055), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1904), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(345), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(308)] = { + [sym_identifier] = ACTIONS(1428), + [aux_sym_preproc_include_token1] = ACTIONS(1428), + [aux_sym_preproc_def_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1428), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1428), + [anon_sym__BitInt] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = 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_static_assert] = ACTIONS(1428), + [anon_sym__Static_assert] = ACTIONS(1428), + [anon_sym_typeof] = ACTIONS(1428), + [anon_sym_typeof_unqual] = 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(368)] = { - [ts_builtin_sym_end] = ACTIONS(1268), - [sym_identifier] = ACTIONS(1266), - [aux_sym_preproc_include_token1] = ACTIONS(1266), - [aux_sym_preproc_def_token1] = ACTIONS(1266), - [aux_sym_preproc_if_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1266), - [sym_preproc_directive] = ACTIONS(1266), - [anon_sym_LPAREN2] = ACTIONS(1268), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_TILDE] = ACTIONS(1268), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_PLUS] = ACTIONS(1266), - [anon_sym_STAR] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym___extension__] = ACTIONS(1266), - [anon_sym_typedef] = ACTIONS(1266), - [anon_sym_extern] = ACTIONS(1266), - [anon_sym___attribute__] = ACTIONS(1266), - [anon_sym___attribute] = ACTIONS(1266), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1268), - [anon_sym___declspec] = ACTIONS(1266), - [anon_sym___cdecl] = ACTIONS(1266), - [anon_sym___clrcall] = ACTIONS(1266), - [anon_sym___stdcall] = ACTIONS(1266), - [anon_sym___fastcall] = ACTIONS(1266), - [anon_sym___thiscall] = ACTIONS(1266), - [anon_sym___vectorcall] = ACTIONS(1266), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_signed] = ACTIONS(1266), - [anon_sym_unsigned] = ACTIONS(1266), - [anon_sym_long] = ACTIONS(1266), - [anon_sym_short] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_auto] = ACTIONS(1266), - [anon_sym_register] = ACTIONS(1266), - [anon_sym_inline] = ACTIONS(1266), - [anon_sym___inline] = ACTIONS(1266), - [anon_sym___inline__] = ACTIONS(1266), - [anon_sym___forceinline] = ACTIONS(1266), - [anon_sym_thread_local] = ACTIONS(1266), - [anon_sym___thread] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_constexpr] = ACTIONS(1266), - [anon_sym_volatile] = ACTIONS(1266), - [anon_sym_restrict] = ACTIONS(1266), - [anon_sym___restrict__] = ACTIONS(1266), - [anon_sym__Atomic] = ACTIONS(1266), - [anon_sym__Noreturn] = ACTIONS(1266), - [anon_sym_noreturn] = ACTIONS(1266), - [anon_sym__Nonnull] = ACTIONS(1266), - [anon_sym_alignas] = ACTIONS(1266), - [anon_sym__Alignas] = ACTIONS(1266), - [sym_primitive_type] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [anon_sym_do] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_goto] = ACTIONS(1266), - [anon_sym_DASH_DASH] = ACTIONS(1268), - [anon_sym_PLUS_PLUS] = ACTIONS(1268), - [anon_sym_sizeof] = ACTIONS(1266), - [anon_sym___alignof__] = ACTIONS(1266), - [anon_sym___alignof] = ACTIONS(1266), - [anon_sym__alignof] = ACTIONS(1266), - [anon_sym_alignof] = ACTIONS(1266), - [anon_sym__Alignof] = ACTIONS(1266), - [anon_sym_offsetof] = ACTIONS(1266), - [anon_sym__Generic] = ACTIONS(1266), - [anon_sym_asm] = ACTIONS(1266), - [anon_sym___asm__] = ACTIONS(1266), - [anon_sym___asm] = ACTIONS(1266), - [sym_number_literal] = ACTIONS(1268), - [anon_sym_L_SQUOTE] = ACTIONS(1268), - [anon_sym_u_SQUOTE] = ACTIONS(1268), - [anon_sym_U_SQUOTE] = ACTIONS(1268), - [anon_sym_u8_SQUOTE] = ACTIONS(1268), - [anon_sym_SQUOTE] = ACTIONS(1268), - [anon_sym_L_DQUOTE] = ACTIONS(1268), - [anon_sym_u_DQUOTE] = ACTIONS(1268), - [anon_sym_U_DQUOTE] = ACTIONS(1268), - [anon_sym_u8_DQUOTE] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym_true] = ACTIONS(1266), - [sym_false] = ACTIONS(1266), - [anon_sym_NULL] = ACTIONS(1266), - [anon_sym_nullptr] = ACTIONS(1266), + [STATE(309)] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1432), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1432), + [anon_sym__BitInt] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = 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_static_assert] = ACTIONS(1432), + [anon_sym__Static_assert] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_typeof_unqual] = 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), }, - [STATE(369)] = { - [sym_attribute_declaration] = STATE(360), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_statement] = STATE(252), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym_seh_try_statement] = STATE(154), - [sym_seh_leave_statement] = STATE(154), - [sym_expression] = STATE(1035), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1977), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(1408), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(933), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(935), - [anon_sym___leave] = ACTIONS(937), - [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(310)] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1436), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1436), + [anon_sym__BitInt] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = 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_static_assert] = ACTIONS(1436), + [anon_sym__Static_assert] = ACTIONS(1436), + [anon_sym_typeof] = ACTIONS(1436), + [anon_sym_typeof_unqual] = 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(370)] = { - [ts_builtin_sym_end] = ACTIONS(1694), - [sym_identifier] = ACTIONS(1696), - [aux_sym_preproc_include_token1] = ACTIONS(1696), - [aux_sym_preproc_def_token1] = ACTIONS(1696), - [aux_sym_preproc_if_token1] = ACTIONS(1696), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1696), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1696), - [sym_preproc_directive] = ACTIONS(1696), - [anon_sym_LPAREN2] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym___extension__] = ACTIONS(1696), - [anon_sym_typedef] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym___attribute__] = ACTIONS(1696), - [anon_sym___attribute] = ACTIONS(1696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1694), - [anon_sym___declspec] = ACTIONS(1696), - [anon_sym___cdecl] = ACTIONS(1696), - [anon_sym___clrcall] = ACTIONS(1696), - [anon_sym___stdcall] = ACTIONS(1696), - [anon_sym___fastcall] = ACTIONS(1696), - [anon_sym___thiscall] = ACTIONS(1696), - [anon_sym___vectorcall] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_signed] = ACTIONS(1696), - [anon_sym_unsigned] = ACTIONS(1696), - [anon_sym_long] = ACTIONS(1696), - [anon_sym_short] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_auto] = ACTIONS(1696), - [anon_sym_register] = ACTIONS(1696), - [anon_sym_inline] = ACTIONS(1696), - [anon_sym___inline] = ACTIONS(1696), - [anon_sym___inline__] = ACTIONS(1696), - [anon_sym___forceinline] = ACTIONS(1696), - [anon_sym_thread_local] = ACTIONS(1696), - [anon_sym___thread] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_constexpr] = ACTIONS(1696), - [anon_sym_volatile] = ACTIONS(1696), - [anon_sym_restrict] = ACTIONS(1696), - [anon_sym___restrict__] = ACTIONS(1696), - [anon_sym__Atomic] = ACTIONS(1696), - [anon_sym__Noreturn] = ACTIONS(1696), - [anon_sym_noreturn] = ACTIONS(1696), - [anon_sym__Nonnull] = ACTIONS(1696), - [anon_sym_alignas] = ACTIONS(1696), - [anon_sym__Alignas] = ACTIONS(1696), - [sym_primitive_type] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_switch] = ACTIONS(1696), - [anon_sym_case] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_do] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_goto] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_sizeof] = ACTIONS(1696), - [anon_sym___alignof__] = ACTIONS(1696), - [anon_sym___alignof] = ACTIONS(1696), - [anon_sym__alignof] = ACTIONS(1696), - [anon_sym_alignof] = ACTIONS(1696), - [anon_sym__Alignof] = ACTIONS(1696), - [anon_sym_offsetof] = ACTIONS(1696), - [anon_sym__Generic] = ACTIONS(1696), - [anon_sym_asm] = ACTIONS(1696), - [anon_sym___asm__] = ACTIONS(1696), - [anon_sym___asm] = ACTIONS(1696), - [sym_number_literal] = ACTIONS(1694), - [anon_sym_L_SQUOTE] = ACTIONS(1694), - [anon_sym_u_SQUOTE] = ACTIONS(1694), - [anon_sym_U_SQUOTE] = ACTIONS(1694), - [anon_sym_u8_SQUOTE] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_L_DQUOTE] = ACTIONS(1694), - [anon_sym_u_DQUOTE] = ACTIONS(1694), - [anon_sym_U_DQUOTE] = ACTIONS(1694), - [anon_sym_u8_DQUOTE] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1694), - [sym_true] = ACTIONS(1696), - [sym_false] = ACTIONS(1696), - [anon_sym_NULL] = ACTIONS(1696), - [anon_sym_nullptr] = ACTIONS(1696), + [STATE(311)] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1444), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1444), + [anon_sym__BitInt] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = 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_static_assert] = ACTIONS(1444), + [anon_sym__Static_assert] = ACTIONS(1444), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_typeof_unqual] = 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(371)] = { - [sym_attribute_declaration] = STATE(359), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_statement] = STATE(183), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym_seh_try_statement] = STATE(178), - [sym_seh_leave_statement] = STATE(178), - [sym_expression] = STATE(1028), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1804), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(359), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(422), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_if] = ACTIONS(432), - [anon_sym_switch] = ACTIONS(434), - [anon_sym_case] = ACTIONS(436), - [anon_sym_default] = ACTIONS(438), - [anon_sym_while] = ACTIONS(440), - [anon_sym_do] = ACTIONS(442), - [anon_sym_for] = ACTIONS(444), - [anon_sym_return] = ACTIONS(446), - [anon_sym_break] = ACTIONS(448), - [anon_sym_continue] = ACTIONS(450), - [anon_sym_goto] = ACTIONS(452), - [anon_sym___try] = ACTIONS(454), - [anon_sym___leave] = ACTIONS(456), - [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(312)] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1346), + [aux_sym_preproc_embed_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___attribute] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym__Nonnull] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [aux_sym_primitive_type_token1] = ACTIONS(1346), + [anon_sym__BitInt] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym_static_assert] = ACTIONS(1346), + [anon_sym__Static_assert] = ACTIONS(1346), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_typeof_unqual] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [anon_sym___asm] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [STATE(372)] = { - [sym_attribute_declaration] = STATE(355), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(1980), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(313)] = { + [sym_identifier] = ACTIONS(1448), + [aux_sym_preproc_include_token1] = ACTIONS(1448), + [aux_sym_preproc_def_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1448), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1448), + [anon_sym__BitInt] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = 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_static_assert] = ACTIONS(1448), + [anon_sym__Static_assert] = ACTIONS(1448), + [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_typeof_unqual] = 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(373)] = { - [sym_attribute_declaration] = STATE(342), - [sym_compound_statement] = STATE(244), - [sym_attributed_statement] = STATE(244), - [sym_statement] = STATE(234), - [sym_labeled_statement] = STATE(244), - [sym_expression_statement] = STATE(244), - [sym_if_statement] = STATE(244), - [sym_switch_statement] = STATE(244), - [sym_case_statement] = STATE(244), - [sym_while_statement] = STATE(244), - [sym_do_statement] = STATE(244), - [sym_for_statement] = STATE(244), - [sym_return_statement] = STATE(244), - [sym_break_statement] = STATE(244), - [sym_continue_statement] = STATE(244), - [sym_goto_statement] = STATE(244), - [sym_seh_try_statement] = STATE(244), - [sym_seh_leave_statement] = STATE(244), - [sym_expression] = STATE(1056), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1942), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_attributed_declarator_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1406), - [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(314)] = { + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1386), + [aux_sym_preproc_include_token1] = ACTIONS(1386), + [aux_sym_preproc_def_token1] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1388), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1386), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1386), + [aux_sym_preproc_embed_token1] = ACTIONS(1386), + [aux_sym_preproc_if_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), + [sym_preproc_directive] = ACTIONS(1386), + [anon_sym_LPAREN2] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym___extension__] = ACTIONS(1386), + [anon_sym_typedef] = ACTIONS(1386), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym___attribute__] = ACTIONS(1386), + [anon_sym___attribute] = ACTIONS(1386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), + [anon_sym___declspec] = ACTIONS(1386), + [anon_sym___cdecl] = ACTIONS(1386), + [anon_sym___clrcall] = ACTIONS(1386), + [anon_sym___stdcall] = ACTIONS(1386), + [anon_sym___fastcall] = ACTIONS(1386), + [anon_sym___thiscall] = ACTIONS(1386), + [anon_sym___vectorcall] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_constexpr] = ACTIONS(1386), + [anon_sym_volatile] = ACTIONS(1386), + [anon_sym_restrict] = ACTIONS(1386), + [anon_sym___restrict__] = ACTIONS(1386), + [anon_sym__Atomic] = ACTIONS(1386), + [anon_sym__Noreturn] = ACTIONS(1386), + [anon_sym_noreturn] = ACTIONS(1386), + [anon_sym__Nonnull] = ACTIONS(1386), + [anon_sym_alignas] = ACTIONS(1386), + [anon_sym__Alignas] = ACTIONS(1386), + [aux_sym_primitive_type_token1] = ACTIONS(1386), + [anon_sym__BitInt] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1386), + [anon_sym_case] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_do] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_goto] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = ACTIONS(1386), + [anon_sym_offsetof] = ACTIONS(1386), + [anon_sym_static_assert] = ACTIONS(1386), + [anon_sym__Static_assert] = ACTIONS(1386), + [anon_sym_typeof] = ACTIONS(1386), + [anon_sym_typeof_unqual] = ACTIONS(1386), + [anon_sym__Generic] = ACTIONS(1386), + [anon_sym_asm] = ACTIONS(1386), + [anon_sym___asm__] = ACTIONS(1386), + [anon_sym___asm] = ACTIONS(1386), + [sym_number_literal] = ACTIONS(1388), + [anon_sym_L_SQUOTE] = ACTIONS(1388), + [anon_sym_u_SQUOTE] = ACTIONS(1388), + [anon_sym_U_SQUOTE] = ACTIONS(1388), + [anon_sym_u8_SQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_L_DQUOTE] = ACTIONS(1388), + [anon_sym_u_DQUOTE] = ACTIONS(1388), + [anon_sym_U_DQUOTE] = ACTIONS(1388), + [anon_sym_u8_DQUOTE] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [sym_true] = ACTIONS(1386), + [sym_false] = ACTIONS(1386), + [anon_sym_NULL] = ACTIONS(1386), + [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [STATE(374)] = { - [sym_expression] = STATE(980), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1698), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1701), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym___attribute__] = ACTIONS(1706), - [anon_sym___attribute] = ACTIONS(1706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), - [anon_sym___declspec] = ACTIONS(1706), - [anon_sym_signed] = ACTIONS(1706), - [anon_sym_unsigned] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_auto] = ACTIONS(1706), - [anon_sym_register] = ACTIONS(1706), - [anon_sym_inline] = ACTIONS(1706), - [anon_sym___inline] = ACTIONS(1706), - [anon_sym___inline__] = ACTIONS(1706), - [anon_sym___forceinline] = ACTIONS(1706), - [anon_sym_thread_local] = ACTIONS(1706), - [anon_sym___thread] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_constexpr] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_restrict] = ACTIONS(1706), - [anon_sym___restrict__] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1706), - [anon_sym__Noreturn] = ACTIONS(1706), - [anon_sym_noreturn] = ACTIONS(1706), - [anon_sym__Nonnull] = ACTIONS(1706), - [anon_sym_alignas] = ACTIONS(1706), - [anon_sym__Alignas] = ACTIONS(1706), - [sym_primitive_type] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [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(315)] = { + [sym_identifier] = ACTIONS(1452), + [aux_sym_preproc_include_token1] = ACTIONS(1452), + [aux_sym_preproc_def_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1452), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1452), + [anon_sym__BitInt] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = 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_static_assert] = ACTIONS(1452), + [anon_sym__Static_assert] = ACTIONS(1452), + [anon_sym_typeof] = ACTIONS(1452), + [anon_sym_typeof_unqual] = 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(375)] = { - [sym_expression] = STATE(980), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1698), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1701), - [anon_sym_typedef] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym___attribute__] = ACTIONS(1706), - [anon_sym___attribute] = ACTIONS(1706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), - [anon_sym___declspec] = ACTIONS(1706), - [anon_sym_signed] = ACTIONS(1706), - [anon_sym_unsigned] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_auto] = ACTIONS(1706), - [anon_sym_register] = ACTIONS(1706), - [anon_sym_inline] = ACTIONS(1706), - [anon_sym___inline] = ACTIONS(1706), - [anon_sym___inline__] = ACTIONS(1706), - [anon_sym___forceinline] = ACTIONS(1706), - [anon_sym_thread_local] = ACTIONS(1706), - [anon_sym___thread] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_constexpr] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_restrict] = ACTIONS(1706), - [anon_sym___restrict__] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1706), - [anon_sym__Noreturn] = ACTIONS(1706), - [anon_sym_noreturn] = ACTIONS(1706), - [anon_sym__Nonnull] = ACTIONS(1706), - [anon_sym_alignas] = ACTIONS(1706), - [anon_sym__Alignas] = ACTIONS(1706), - [sym_primitive_type] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [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(316)] = { + [sym_identifier] = ACTIONS(1432), + [aux_sym_preproc_include_token1] = ACTIONS(1432), + [aux_sym_preproc_def_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1432), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1432), + [anon_sym__BitInt] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = 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_static_assert] = ACTIONS(1432), + [anon_sym__Static_assert] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_typeof_unqual] = 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), }, - [STATE(376)] = { - [sym_expression] = STATE(980), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1698), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1701), - [anon_sym_typedef] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym___attribute__] = ACTIONS(1706), - [anon_sym___attribute] = ACTIONS(1706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), - [anon_sym___declspec] = ACTIONS(1706), - [anon_sym_signed] = ACTIONS(1706), - [anon_sym_unsigned] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_auto] = ACTIONS(1706), - [anon_sym_register] = ACTIONS(1706), - [anon_sym_inline] = ACTIONS(1706), - [anon_sym___inline] = ACTIONS(1706), - [anon_sym___inline__] = ACTIONS(1706), - [anon_sym___forceinline] = ACTIONS(1706), - [anon_sym_thread_local] = ACTIONS(1706), - [anon_sym___thread] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_constexpr] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_restrict] = ACTIONS(1706), - [anon_sym___restrict__] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1706), - [anon_sym__Noreturn] = ACTIONS(1706), - [anon_sym_noreturn] = ACTIONS(1706), - [anon_sym__Nonnull] = ACTIONS(1706), - [anon_sym_alignas] = ACTIONS(1706), - [anon_sym__Alignas] = ACTIONS(1706), - [sym_primitive_type] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [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(317)] = { + [sym_identifier] = ACTIONS(1444), + [aux_sym_preproc_include_token1] = ACTIONS(1444), + [aux_sym_preproc_def_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1444), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1444), + [anon_sym__BitInt] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = 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_static_assert] = ACTIONS(1444), + [anon_sym__Static_assert] = ACTIONS(1444), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_typeof_unqual] = 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(377)] = { - [sym_expression] = STATE(980), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1698), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1701), - [anon_sym_typedef] = ACTIONS(1714), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym___attribute__] = ACTIONS(1706), - [anon_sym___attribute] = ACTIONS(1706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), - [anon_sym___declspec] = ACTIONS(1706), - [anon_sym_signed] = ACTIONS(1706), - [anon_sym_unsigned] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_auto] = ACTIONS(1706), - [anon_sym_register] = ACTIONS(1706), - [anon_sym_inline] = ACTIONS(1706), - [anon_sym___inline] = ACTIONS(1706), - [anon_sym___inline__] = ACTIONS(1706), - [anon_sym___forceinline] = ACTIONS(1706), - [anon_sym_thread_local] = ACTIONS(1706), - [anon_sym___thread] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_constexpr] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_restrict] = ACTIONS(1706), - [anon_sym___restrict__] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1706), - [anon_sym__Noreturn] = ACTIONS(1706), - [anon_sym_noreturn] = ACTIONS(1706), - [anon_sym__Nonnull] = ACTIONS(1706), - [anon_sym_alignas] = ACTIONS(1706), - [anon_sym__Alignas] = ACTIONS(1706), - [sym_primitive_type] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [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(318)] = { + [sym_identifier] = ACTIONS(1436), + [aux_sym_preproc_include_token1] = ACTIONS(1436), + [aux_sym_preproc_def_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1436), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1436), + [anon_sym__BitInt] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = 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_static_assert] = ACTIONS(1436), + [anon_sym__Static_assert] = ACTIONS(1436), + [anon_sym_typeof] = ACTIONS(1436), + [anon_sym_typeof_unqual] = 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(378)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1856), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(319)] = { + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1408), + [aux_sym_preproc_embed_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___attribute] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [anon_sym__Nonnull] = ACTIONS(1408), + [anon_sym_alignas] = ACTIONS(1408), + [anon_sym__Alignas] = ACTIONS(1408), + [aux_sym_primitive_type_token1] = ACTIONS(1408), + [anon_sym__BitInt] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym___try] = ACTIONS(1408), + [anon_sym___leave] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym_static_assert] = ACTIONS(1408), + [anon_sym__Static_assert] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof_unqual] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [anon_sym___asm] = ACTIONS(1408), + [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(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, - [STATE(379)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1975), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(320)] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [aux_sym_preproc_include_token1] = ACTIONS(1476), + [aux_sym_preproc_def_token1] = ACTIONS(1476), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1476), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1476), + [aux_sym_preproc_embed_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(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [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_LBRACK_LBRACK] = ACTIONS(1474), + [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(1474), + [anon_sym_signed] = ACTIONS(1476), + [anon_sym_unsigned] = ACTIONS(1476), + [anon_sym_long] = ACTIONS(1476), + [anon_sym_short] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_auto] = ACTIONS(1476), + [anon_sym_register] = ACTIONS(1476), + [anon_sym_inline] = ACTIONS(1476), + [anon_sym___inline] = ACTIONS(1476), + [anon_sym___inline__] = ACTIONS(1476), + [anon_sym___forceinline] = ACTIONS(1476), + [anon_sym_thread_local] = ACTIONS(1476), + [anon_sym___thread] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_constexpr] = ACTIONS(1476), + [anon_sym_volatile] = ACTIONS(1476), + [anon_sym_restrict] = ACTIONS(1476), + [anon_sym___restrict__] = ACTIONS(1476), + [anon_sym__Atomic] = ACTIONS(1476), + [anon_sym__Noreturn] = ACTIONS(1476), + [anon_sym_noreturn] = ACTIONS(1476), + [anon_sym__Nonnull] = ACTIONS(1476), + [anon_sym_alignas] = ACTIONS(1476), + [anon_sym__Alignas] = ACTIONS(1476), + [aux_sym_primitive_type_token1] = ACTIONS(1476), + [anon_sym__BitInt] = 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(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [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_static_assert] = ACTIONS(1476), + [anon_sym__Static_assert] = ACTIONS(1476), + [anon_sym_typeof] = ACTIONS(1476), + [anon_sym_typeof_unqual] = 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(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(1476), + [sym_false] = ACTIONS(1476), + [anon_sym_NULL] = ACTIONS(1476), + [anon_sym_nullptr] = ACTIONS(1476), [sym_comment] = ACTIONS(3), }, - [STATE(380)] = { - [sym_expression] = STATE(980), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1698), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1701), - [anon_sym_extern] = ACTIONS(1706), - [anon_sym___attribute__] = ACTIONS(1706), - [anon_sym___attribute] = ACTIONS(1706), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1708), - [anon_sym___declspec] = ACTIONS(1706), - [anon_sym_signed] = ACTIONS(1706), - [anon_sym_unsigned] = ACTIONS(1706), - [anon_sym_long] = ACTIONS(1706), - [anon_sym_short] = ACTIONS(1706), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_auto] = ACTIONS(1706), - [anon_sym_register] = ACTIONS(1706), - [anon_sym_inline] = ACTIONS(1706), - [anon_sym___inline] = ACTIONS(1706), - [anon_sym___inline__] = ACTIONS(1706), - [anon_sym___forceinline] = ACTIONS(1706), - [anon_sym_thread_local] = ACTIONS(1706), - [anon_sym___thread] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_constexpr] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_restrict] = ACTIONS(1706), - [anon_sym___restrict__] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1706), - [anon_sym__Noreturn] = ACTIONS(1706), - [anon_sym_noreturn] = ACTIONS(1706), - [anon_sym__Nonnull] = ACTIONS(1706), - [anon_sym_alignas] = ACTIONS(1706), - [anon_sym__Alignas] = ACTIONS(1706), - [sym_primitive_type] = ACTIONS(1706), - [anon_sym_enum] = ACTIONS(1706), - [anon_sym_struct] = ACTIONS(1706), - [anon_sym_union] = ACTIONS(1706), - [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(321)] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [aux_sym_preproc_include_token1] = ACTIONS(1480), + [aux_sym_preproc_def_token1] = ACTIONS(1480), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1480), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1480), + [aux_sym_preproc_embed_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(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [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_LBRACK_LBRACK] = ACTIONS(1478), + [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(1478), + [anon_sym_signed] = ACTIONS(1480), + [anon_sym_unsigned] = ACTIONS(1480), + [anon_sym_long] = ACTIONS(1480), + [anon_sym_short] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_auto] = ACTIONS(1480), + [anon_sym_register] = ACTIONS(1480), + [anon_sym_inline] = ACTIONS(1480), + [anon_sym___inline] = ACTIONS(1480), + [anon_sym___inline__] = ACTIONS(1480), + [anon_sym___forceinline] = ACTIONS(1480), + [anon_sym_thread_local] = ACTIONS(1480), + [anon_sym___thread] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_constexpr] = ACTIONS(1480), + [anon_sym_volatile] = ACTIONS(1480), + [anon_sym_restrict] = ACTIONS(1480), + [anon_sym___restrict__] = ACTIONS(1480), + [anon_sym__Atomic] = ACTIONS(1480), + [anon_sym__Noreturn] = ACTIONS(1480), + [anon_sym_noreturn] = ACTIONS(1480), + [anon_sym__Nonnull] = ACTIONS(1480), + [anon_sym_alignas] = ACTIONS(1480), + [anon_sym__Alignas] = ACTIONS(1480), + [aux_sym_primitive_type_token1] = ACTIONS(1480), + [anon_sym__BitInt] = 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(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [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_static_assert] = ACTIONS(1480), + [anon_sym__Static_assert] = ACTIONS(1480), + [anon_sym_typeof] = ACTIONS(1480), + [anon_sym_typeof_unqual] = 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(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(1480), + [sym_false] = ACTIONS(1480), + [anon_sym_NULL] = ACTIONS(1480), + [anon_sym_nullptr] = ACTIONS(1480), [sym_comment] = ACTIONS(3), }, - [STATE(381)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1779), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(322)] = { + [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_errwarn_token1] = ACTIONS(1428), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1428), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1428), + [anon_sym__BitInt] = ACTIONS(1428), + [anon_sym_enum] = ACTIONS(1428), + [anon_sym_struct] = ACTIONS(1428), + [anon_sym_union] = ACTIONS(1428), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1428), + [anon_sym__Static_assert] = ACTIONS(1428), + [anon_sym_typeof] = ACTIONS(1428), + [anon_sym_typeof_unqual] = 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(382)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1996), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(323)] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1354), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1354), + [aux_sym_preproc_embed_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym___attribute] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [anon_sym__Nonnull] = ACTIONS(1354), + [anon_sym_alignas] = ACTIONS(1354), + [anon_sym__Alignas] = ACTIONS(1354), + [aux_sym_primitive_type_token1] = ACTIONS(1354), + [anon_sym__BitInt] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym_static_assert] = ACTIONS(1354), + [anon_sym__Static_assert] = ACTIONS(1354), + [anon_sym_typeof] = ACTIONS(1354), + [anon_sym_typeof_unqual] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [anon_sym___asm] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [STATE(383)] = { - [sym_expression] = STATE(889), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(675), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(675), - [sym_call_expression] = STATE(675), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(675), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(675), - [sym_initializer_list] = STATE(678), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1378), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1386), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1386), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1386), - [anon_sym_GT_GT] = ACTIONS(1386), - [anon_sym___extension__] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_RBRACK] = ACTIONS(1380), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_STAR_EQ] = ACTIONS(1380), - [anon_sym_SLASH_EQ] = ACTIONS(1380), - [anon_sym_PERCENT_EQ] = ACTIONS(1380), - [anon_sym_PLUS_EQ] = ACTIONS(1380), - [anon_sym_DASH_EQ] = ACTIONS(1380), - [anon_sym_LT_LT_EQ] = ACTIONS(1380), - [anon_sym_GT_GT_EQ] = ACTIONS(1380), - [anon_sym_AMP_EQ] = ACTIONS(1380), - [anon_sym_CARET_EQ] = ACTIONS(1380), - [anon_sym_PIPE_EQ] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1728), - [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(1386), - [anon_sym_DASH_GT] = ACTIONS(1380), - [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(324)] = { + [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_errwarn_token1] = ACTIONS(1432), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1432), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1432), + [anon_sym__BitInt] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1432), + [anon_sym__Static_assert] = ACTIONS(1432), + [anon_sym_typeof] = ACTIONS(1432), + [anon_sym_typeof_unqual] = 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), }, - [STATE(384)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1793), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(325)] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1362), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1362), + [aux_sym_preproc_embed_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym___attribute] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [anon_sym__Nonnull] = ACTIONS(1362), + [anon_sym_alignas] = ACTIONS(1362), + [anon_sym__Alignas] = ACTIONS(1362), + [aux_sym_primitive_type_token1] = ACTIONS(1362), + [anon_sym__BitInt] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym_static_assert] = ACTIONS(1362), + [anon_sym__Static_assert] = ACTIONS(1362), + [anon_sym_typeof] = ACTIONS(1362), + [anon_sym_typeof_unqual] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [anon_sym___asm] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [STATE(385)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1940), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(326)] = { + [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_errwarn_token1] = ACTIONS(1436), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1436), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1436), + [anon_sym__BitInt] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1436), + [anon_sym__Static_assert] = ACTIONS(1436), + [anon_sym_typeof] = ACTIONS(1436), + [anon_sym_typeof_unqual] = 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(386)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1930), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(327)] = { + [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_errwarn_token1] = ACTIONS(1440), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1440), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1440), + [anon_sym__BitInt] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1440), + [anon_sym__Static_assert] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_typeof_unqual] = 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(387)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1887), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(328)] = { + [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_errwarn_token1] = ACTIONS(1444), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1444), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1444), + [anon_sym__BitInt] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1444), + [anon_sym__Static_assert] = ACTIONS(1444), + [anon_sym_typeof] = ACTIONS(1444), + [anon_sym_typeof_unqual] = 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(388)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1768), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(329)] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1346), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1346), + [aux_sym_preproc_embed_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym___attribute] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [anon_sym__Nonnull] = ACTIONS(1346), + [anon_sym_alignas] = ACTIONS(1346), + [anon_sym__Alignas] = ACTIONS(1346), + [aux_sym_primitive_type_token1] = ACTIONS(1346), + [anon_sym__BitInt] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym_static_assert] = ACTIONS(1346), + [anon_sym__Static_assert] = ACTIONS(1346), + [anon_sym_typeof] = ACTIONS(1346), + [anon_sym_typeof_unqual] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [anon_sym___asm] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [STATE(389)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1775), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(330)] = { + [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_errwarn_token1] = ACTIONS(1448), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1448), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1448), + [anon_sym__BitInt] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1448), + [anon_sym__Static_assert] = ACTIONS(1448), + [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_typeof_unqual] = 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(390)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1825), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(331)] = { + [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_errwarn_token1] = ACTIONS(1452), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1452), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1452), + [anon_sym__BitInt] = ACTIONS(1452), + [anon_sym_enum] = ACTIONS(1452), + [anon_sym_struct] = ACTIONS(1452), + [anon_sym_union] = ACTIONS(1452), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1452), + [anon_sym__Static_assert] = ACTIONS(1452), + [anon_sym_typeof] = ACTIONS(1452), + [anon_sym_typeof_unqual] = 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(391)] = { - [sym_compound_statement] = STATE(1901), - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1862), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(332)] = { + [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_errwarn_token1] = ACTIONS(1456), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1456), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1456), + [anon_sym__BitInt] = ACTIONS(1456), + [anon_sym_enum] = ACTIONS(1456), + [anon_sym_struct] = ACTIONS(1456), + [anon_sym_union] = ACTIONS(1456), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1456), + [anon_sym__Static_assert] = ACTIONS(1456), + [anon_sym_typeof] = ACTIONS(1456), + [anon_sym_typeof_unqual] = 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(392)] = { - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1084), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1885), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(333)] = { + [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_errwarn_token1] = ACTIONS(1460), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1460), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1460), + [anon_sym__BitInt] = ACTIONS(1460), + [anon_sym_enum] = ACTIONS(1460), + [anon_sym_struct] = ACTIONS(1460), + [anon_sym_union] = ACTIONS(1460), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1460), + [anon_sym__Static_assert] = ACTIONS(1460), + [anon_sym_typeof] = ACTIONS(1460), + [anon_sym_typeof_unqual] = 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(393)] = { - [sym_type_qualifier] = STATE(1006), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(1077), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_expression] = STATE(1080), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_type_descriptor] = STATE(1776), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__type_definition_type_repeat1] = STATE(1006), - [aux_sym_sized_type_specifier_repeat1] = STATE(1026), - [sym_identifier] = ACTIONS(1716), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1718), - [anon_sym_unsigned] = ACTIONS(1718), - [anon_sym_long] = ACTIONS(1718), - [anon_sym_short] = ACTIONS(1718), - [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(1720), - [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(334)] = { + [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_errwarn_token1] = ACTIONS(1464), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1464), + [aux_sym_preproc_embed_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_LBRACK_LBRACK] = ACTIONS(1466), + [anon_sym___declspec] = ACTIONS(1464), + [anon_sym___cdecl] = ACTIONS(1464), + [anon_sym___clrcall] = ACTIONS(1464), + [anon_sym___stdcall] = ACTIONS(1464), + [anon_sym___fastcall] = ACTIONS(1464), + [anon_sym___thiscall] = ACTIONS(1464), + [anon_sym___vectorcall] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_signed] = ACTIONS(1464), + [anon_sym_unsigned] = ACTIONS(1464), + [anon_sym_long] = ACTIONS(1464), + [anon_sym_short] = ACTIONS(1464), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_auto] = ACTIONS(1464), + [anon_sym_register] = ACTIONS(1464), + [anon_sym_inline] = ACTIONS(1464), + [anon_sym___inline] = ACTIONS(1464), + [anon_sym___inline__] = ACTIONS(1464), + [anon_sym___forceinline] = ACTIONS(1464), + [anon_sym_thread_local] = ACTIONS(1464), + [anon_sym___thread] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_constexpr] = ACTIONS(1464), + [anon_sym_volatile] = ACTIONS(1464), + [anon_sym_restrict] = ACTIONS(1464), + [anon_sym___restrict__] = ACTIONS(1464), + [anon_sym__Atomic] = ACTIONS(1464), + [anon_sym__Noreturn] = ACTIONS(1464), + [anon_sym_noreturn] = ACTIONS(1464), + [anon_sym__Nonnull] = ACTIONS(1464), + [anon_sym_alignas] = ACTIONS(1464), + [anon_sym__Alignas] = ACTIONS(1464), + [aux_sym_primitive_type_token1] = ACTIONS(1464), + [anon_sym__BitInt] = ACTIONS(1464), + [anon_sym_enum] = ACTIONS(1464), + [anon_sym_struct] = ACTIONS(1464), + [anon_sym_union] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_do] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_continue] = ACTIONS(1464), + [anon_sym_goto] = ACTIONS(1464), + [anon_sym_DASH_DASH] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1466), + [anon_sym_sizeof] = ACTIONS(1464), + [anon_sym___alignof__] = ACTIONS(1464), + [anon_sym___alignof] = ACTIONS(1464), + [anon_sym__alignof] = ACTIONS(1464), + [anon_sym_alignof] = ACTIONS(1464), + [anon_sym__Alignof] = ACTIONS(1464), + [anon_sym_offsetof] = ACTIONS(1464), + [anon_sym_static_assert] = ACTIONS(1464), + [anon_sym__Static_assert] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1464), + [anon_sym_typeof_unqual] = 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(394)] = { - [sym_identifier] = ACTIONS(1730), - [anon_sym_COMMA] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_LPAREN2] = ACTIONS(1732), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1732), - [anon_sym___extension__] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1730), - [anon_sym___attribute__] = ACTIONS(1730), - [anon_sym___attribute] = ACTIONS(1730), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1732), - [anon_sym___declspec] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1732), - [anon_sym_signed] = ACTIONS(1730), - [anon_sym_unsigned] = ACTIONS(1730), - [anon_sym_long] = ACTIONS(1730), - [anon_sym_short] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1732), - [anon_sym_auto] = ACTIONS(1730), - [anon_sym_register] = ACTIONS(1730), - [anon_sym_inline] = ACTIONS(1730), - [anon_sym___inline] = ACTIONS(1730), - [anon_sym___inline__] = ACTIONS(1730), - [anon_sym___forceinline] = ACTIONS(1730), - [anon_sym_thread_local] = ACTIONS(1730), - [anon_sym___thread] = ACTIONS(1730), - [anon_sym_const] = ACTIONS(1730), - [anon_sym_constexpr] = ACTIONS(1730), - [anon_sym_volatile] = ACTIONS(1730), - [anon_sym_restrict] = ACTIONS(1730), - [anon_sym___restrict__] = ACTIONS(1730), - [anon_sym__Atomic] = ACTIONS(1730), - [anon_sym__Noreturn] = ACTIONS(1730), - [anon_sym_noreturn] = ACTIONS(1730), - [anon_sym__Nonnull] = ACTIONS(1730), - [anon_sym_alignas] = ACTIONS(1730), - [anon_sym__Alignas] = ACTIONS(1730), - [sym_primitive_type] = ACTIONS(1730), - [anon_sym_enum] = ACTIONS(1730), - [anon_sym_COLON] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1730), - [anon_sym_union] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1730), - [anon_sym_default] = ACTIONS(1730), - [anon_sym_while] = ACTIONS(1730), - [anon_sym_do] = ACTIONS(1730), - [anon_sym_for] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1730), - [anon_sym_break] = ACTIONS(1730), - [anon_sym_continue] = ACTIONS(1730), - [anon_sym_goto] = ACTIONS(1730), - [anon_sym___try] = ACTIONS(1730), - [anon_sym___leave] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1732), - [anon_sym_sizeof] = ACTIONS(1730), - [anon_sym___alignof__] = ACTIONS(1730), - [anon_sym___alignof] = ACTIONS(1730), - [anon_sym__alignof] = ACTIONS(1730), - [anon_sym_alignof] = ACTIONS(1730), - [anon_sym__Alignof] = ACTIONS(1730), - [anon_sym_offsetof] = ACTIONS(1730), - [anon_sym__Generic] = ACTIONS(1730), - [anon_sym_asm] = ACTIONS(1730), - [anon_sym___asm__] = ACTIONS(1730), - [anon_sym___asm] = ACTIONS(1730), - [sym_number_literal] = ACTIONS(1732), - [anon_sym_L_SQUOTE] = ACTIONS(1732), - [anon_sym_u_SQUOTE] = ACTIONS(1732), - [anon_sym_U_SQUOTE] = ACTIONS(1732), - [anon_sym_u8_SQUOTE] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_L_DQUOTE] = ACTIONS(1732), - [anon_sym_u_DQUOTE] = ACTIONS(1732), - [anon_sym_U_DQUOTE] = ACTIONS(1732), - [anon_sym_u8_DQUOTE] = ACTIONS(1732), - [anon_sym_DQUOTE] = ACTIONS(1732), - [sym_true] = ACTIONS(1730), - [sym_false] = ACTIONS(1730), - [anon_sym_NULL] = ACTIONS(1730), - [anon_sym_nullptr] = ACTIONS(1730), + [STATE(335)] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1366), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1366), + [aux_sym_preproc_embed_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym___attribute] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [anon_sym__Nonnull] = ACTIONS(1366), + [anon_sym_alignas] = ACTIONS(1366), + [anon_sym__Alignas] = ACTIONS(1366), + [aux_sym_primitive_type_token1] = ACTIONS(1366), + [anon_sym__BitInt] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym_static_assert] = ACTIONS(1366), + [anon_sym__Static_assert] = ACTIONS(1366), + [anon_sym_typeof] = ACTIONS(1366), + [anon_sym_typeof_unqual] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [anon_sym___asm] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [STATE(395)] = { - [sym_identifier] = ACTIONS(1734), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LPAREN2] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym___extension__] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1734), - [anon_sym___attribute__] = ACTIONS(1734), - [anon_sym___attribute] = ACTIONS(1734), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1736), - [anon_sym___declspec] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_signed] = ACTIONS(1734), - [anon_sym_unsigned] = ACTIONS(1734), - [anon_sym_long] = ACTIONS(1734), - [anon_sym_short] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_static] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1736), - [anon_sym_auto] = ACTIONS(1734), - [anon_sym_register] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym___inline] = ACTIONS(1734), - [anon_sym___inline__] = ACTIONS(1734), - [anon_sym___forceinline] = ACTIONS(1734), - [anon_sym_thread_local] = ACTIONS(1734), - [anon_sym___thread] = ACTIONS(1734), - [anon_sym_const] = ACTIONS(1734), - [anon_sym_constexpr] = ACTIONS(1734), - [anon_sym_volatile] = ACTIONS(1734), - [anon_sym_restrict] = ACTIONS(1734), - [anon_sym___restrict__] = ACTIONS(1734), - [anon_sym__Atomic] = ACTIONS(1734), - [anon_sym__Noreturn] = ACTIONS(1734), - [anon_sym_noreturn] = ACTIONS(1734), - [anon_sym__Nonnull] = ACTIONS(1734), - [anon_sym_alignas] = ACTIONS(1734), - [anon_sym__Alignas] = ACTIONS(1734), - [sym_primitive_type] = ACTIONS(1734), - [anon_sym_enum] = ACTIONS(1734), - [anon_sym_COLON] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1734), - [anon_sym_union] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1734), - [anon_sym_default] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_do] = ACTIONS(1734), - [anon_sym_for] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_goto] = ACTIONS(1734), - [anon_sym___try] = ACTIONS(1734), - [anon_sym___leave] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_sizeof] = ACTIONS(1734), - [anon_sym___alignof__] = ACTIONS(1734), - [anon_sym___alignof] = ACTIONS(1734), - [anon_sym__alignof] = ACTIONS(1734), - [anon_sym_alignof] = ACTIONS(1734), - [anon_sym__Alignof] = ACTIONS(1734), - [anon_sym_offsetof] = ACTIONS(1734), - [anon_sym__Generic] = ACTIONS(1734), - [anon_sym_asm] = ACTIONS(1734), - [anon_sym___asm__] = ACTIONS(1734), - [anon_sym___asm] = ACTIONS(1734), - [sym_number_literal] = ACTIONS(1736), - [anon_sym_L_SQUOTE] = ACTIONS(1736), - [anon_sym_u_SQUOTE] = ACTIONS(1736), - [anon_sym_U_SQUOTE] = ACTIONS(1736), - [anon_sym_u8_SQUOTE] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_L_DQUOTE] = ACTIONS(1736), - [anon_sym_u_DQUOTE] = ACTIONS(1736), - [anon_sym_U_DQUOTE] = ACTIONS(1736), - [anon_sym_u8_DQUOTE] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1736), - [sym_true] = ACTIONS(1734), - [sym_false] = ACTIONS(1734), - [anon_sym_NULL] = ACTIONS(1734), - [anon_sym_nullptr] = ACTIONS(1734), + [STATE(336)] = { + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1370), + [aux_sym_preproc_include_token1] = ACTIONS(1370), + [aux_sym_preproc_def_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1370), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1370), + [aux_sym_preproc_embed_token1] = ACTIONS(1370), + [aux_sym_preproc_if_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), + [sym_preproc_directive] = ACTIONS(1370), + [anon_sym_LPAREN2] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_TILDE] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym___extension__] = ACTIONS(1370), + [anon_sym_typedef] = ACTIONS(1370), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym___attribute__] = ACTIONS(1370), + [anon_sym___attribute] = ACTIONS(1370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1370), + [anon_sym___cdecl] = ACTIONS(1370), + [anon_sym___clrcall] = ACTIONS(1370), + [anon_sym___stdcall] = ACTIONS(1370), + [anon_sym___fastcall] = ACTIONS(1370), + [anon_sym___thiscall] = ACTIONS(1370), + [anon_sym___vectorcall] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_constexpr] = ACTIONS(1370), + [anon_sym_volatile] = ACTIONS(1370), + [anon_sym_restrict] = ACTIONS(1370), + [anon_sym___restrict__] = ACTIONS(1370), + [anon_sym__Atomic] = ACTIONS(1370), + [anon_sym__Noreturn] = ACTIONS(1370), + [anon_sym_noreturn] = ACTIONS(1370), + [anon_sym__Nonnull] = ACTIONS(1370), + [anon_sym_alignas] = ACTIONS(1370), + [anon_sym__Alignas] = ACTIONS(1370), + [aux_sym_primitive_type_token1] = ACTIONS(1370), + [anon_sym__BitInt] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_switch] = ACTIONS(1370), + [anon_sym_case] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_do] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_goto] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = ACTIONS(1370), + [anon_sym_offsetof] = ACTIONS(1370), + [anon_sym_static_assert] = ACTIONS(1370), + [anon_sym__Static_assert] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_typeof_unqual] = ACTIONS(1370), + [anon_sym__Generic] = ACTIONS(1370), + [anon_sym_asm] = ACTIONS(1370), + [anon_sym___asm__] = ACTIONS(1370), + [anon_sym___asm] = ACTIONS(1370), + [sym_number_literal] = ACTIONS(1372), + [anon_sym_L_SQUOTE] = ACTIONS(1372), + [anon_sym_u_SQUOTE] = ACTIONS(1372), + [anon_sym_U_SQUOTE] = ACTIONS(1372), + [anon_sym_u8_SQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [anon_sym_L_DQUOTE] = ACTIONS(1372), + [anon_sym_u_DQUOTE] = ACTIONS(1372), + [anon_sym_U_DQUOTE] = ACTIONS(1372), + [anon_sym_u8_DQUOTE] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [sym_true] = ACTIONS(1370), + [sym_false] = ACTIONS(1370), + [anon_sym_NULL] = ACTIONS(1370), + [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [STATE(396)] = { - [sym_expression] = STATE(699), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_initializer_list] = STATE(678), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1380), - [anon_sym_RPAREN] = ACTIONS(1380), + [STATE(337)] = { + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1374), + [aux_sym_preproc_include_token1] = ACTIONS(1374), + [aux_sym_preproc_def_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1374), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1374), + [aux_sym_preproc_embed_token1] = ACTIONS(1374), + [aux_sym_preproc_if_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), + [sym_preproc_directive] = ACTIONS(1374), + [anon_sym_LPAREN2] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [anon_sym_typedef] = ACTIONS(1374), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym___attribute__] = ACTIONS(1374), + [anon_sym___attribute] = ACTIONS(1374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), + [anon_sym___declspec] = ACTIONS(1374), + [anon_sym___cdecl] = ACTIONS(1374), + [anon_sym___clrcall] = ACTIONS(1374), + [anon_sym___stdcall] = ACTIONS(1374), + [anon_sym___fastcall] = ACTIONS(1374), + [anon_sym___thiscall] = ACTIONS(1374), + [anon_sym___vectorcall] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_constexpr] = ACTIONS(1374), + [anon_sym_volatile] = ACTIONS(1374), + [anon_sym_restrict] = ACTIONS(1374), + [anon_sym___restrict__] = ACTIONS(1374), + [anon_sym__Atomic] = ACTIONS(1374), + [anon_sym__Noreturn] = ACTIONS(1374), + [anon_sym_noreturn] = ACTIONS(1374), + [anon_sym__Nonnull] = ACTIONS(1374), + [anon_sym_alignas] = ACTIONS(1374), + [anon_sym__Alignas] = ACTIONS(1374), + [aux_sym_primitive_type_token1] = ACTIONS(1374), + [anon_sym__BitInt] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_switch] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_do] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = ACTIONS(1374), + [anon_sym_offsetof] = ACTIONS(1374), + [anon_sym_static_assert] = ACTIONS(1374), + [anon_sym__Static_assert] = ACTIONS(1374), + [anon_sym_typeof] = ACTIONS(1374), + [anon_sym_typeof_unqual] = ACTIONS(1374), + [anon_sym__Generic] = ACTIONS(1374), + [anon_sym_asm] = ACTIONS(1374), + [anon_sym___asm__] = ACTIONS(1374), + [anon_sym___asm] = ACTIONS(1374), + [sym_number_literal] = ACTIONS(1376), + [anon_sym_L_SQUOTE] = ACTIONS(1376), + [anon_sym_u_SQUOTE] = ACTIONS(1376), + [anon_sym_U_SQUOTE] = ACTIONS(1376), + [anon_sym_u8_SQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [anon_sym_L_DQUOTE] = ACTIONS(1376), + [anon_sym_u_DQUOTE] = ACTIONS(1376), + [anon_sym_U_DQUOTE] = ACTIONS(1376), + [anon_sym_u8_DQUOTE] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [sym_true] = ACTIONS(1374), + [sym_false] = ACTIONS(1374), + [anon_sym_NULL] = ACTIONS(1374), + [anon_sym_nullptr] = ACTIONS(1374), + [sym_comment] = ACTIONS(3), + }, + [STATE(338)] = { + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1378), + [aux_sym_preproc_include_token1] = ACTIONS(1378), + [aux_sym_preproc_def_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1378), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1378), + [aux_sym_preproc_embed_token1] = ACTIONS(1378), + [aux_sym_preproc_if_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), + [sym_preproc_directive] = ACTIONS(1378), [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_TILDE] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1378), [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1404), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym___attribute] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym___extension__] = ACTIONS(1378), + [anon_sym_typedef] = ACTIONS(1378), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym___attribute__] = ACTIONS(1378), + [anon_sym___attribute] = ACTIONS(1378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), + [anon_sym___declspec] = ACTIONS(1378), + [anon_sym___cdecl] = ACTIONS(1378), + [anon_sym___clrcall] = ACTIONS(1378), + [anon_sym___stdcall] = ACTIONS(1378), + [anon_sym___fastcall] = ACTIONS(1378), + [anon_sym___thiscall] = ACTIONS(1378), + [anon_sym___vectorcall] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_constexpr] = ACTIONS(1378), + [anon_sym_volatile] = ACTIONS(1378), + [anon_sym_restrict] = ACTIONS(1378), + [anon_sym___restrict__] = ACTIONS(1378), + [anon_sym__Atomic] = ACTIONS(1378), + [anon_sym__Noreturn] = ACTIONS(1378), + [anon_sym_noreturn] = ACTIONS(1378), + [anon_sym__Nonnull] = ACTIONS(1378), + [anon_sym_alignas] = ACTIONS(1378), + [anon_sym__Alignas] = ACTIONS(1378), + [aux_sym_primitive_type_token1] = ACTIONS(1378), + [anon_sym__BitInt] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_switch] = ACTIONS(1378), + [anon_sym_case] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_do] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_goto] = ACTIONS(1378), [anon_sym_DASH_DASH] = ACTIONS(1380), [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [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(1386), - [anon_sym_DASH_GT] = ACTIONS(1380), - [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_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = ACTIONS(1378), + [anon_sym_offsetof] = ACTIONS(1378), + [anon_sym_static_assert] = ACTIONS(1378), + [anon_sym__Static_assert] = ACTIONS(1378), + [anon_sym_typeof] = ACTIONS(1378), + [anon_sym_typeof_unqual] = ACTIONS(1378), + [anon_sym__Generic] = ACTIONS(1378), + [anon_sym_asm] = ACTIONS(1378), + [anon_sym___asm__] = ACTIONS(1378), + [anon_sym___asm] = ACTIONS(1378), + [sym_number_literal] = ACTIONS(1380), + [anon_sym_L_SQUOTE] = ACTIONS(1380), + [anon_sym_u_SQUOTE] = ACTIONS(1380), + [anon_sym_U_SQUOTE] = ACTIONS(1380), + [anon_sym_u8_SQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_L_DQUOTE] = ACTIONS(1380), + [anon_sym_u_DQUOTE] = ACTIONS(1380), + [anon_sym_U_DQUOTE] = ACTIONS(1380), + [anon_sym_u8_DQUOTE] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [sym_true] = ACTIONS(1378), + [sym_false] = ACTIONS(1378), + [anon_sym_NULL] = ACTIONS(1378), + [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [STATE(397)] = { - [sym_expression] = STATE(699), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(835), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(835), - [sym_call_expression] = STATE(835), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(835), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(835), - [sym_initializer_list] = STATE(678), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(713), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1380), - [aux_sym_preproc_if_token2] = ACTIONS(1380), - [aux_sym_preproc_else_token1] = ACTIONS(1380), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1746), - [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(1386), - [anon_sym_DASH_GT] = ACTIONS(1380), - [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(339)] = { + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1382), + [aux_sym_preproc_include_token1] = ACTIONS(1382), + [aux_sym_preproc_def_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1382), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1382), + [aux_sym_preproc_embed_token1] = ACTIONS(1382), + [aux_sym_preproc_if_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), + [sym_preproc_directive] = ACTIONS(1382), + [anon_sym_LPAREN2] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_TILDE] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1382), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [anon_sym_typedef] = ACTIONS(1382), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym___attribute__] = ACTIONS(1382), + [anon_sym___attribute] = ACTIONS(1382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), + [anon_sym___declspec] = ACTIONS(1382), + [anon_sym___cdecl] = ACTIONS(1382), + [anon_sym___clrcall] = ACTIONS(1382), + [anon_sym___stdcall] = ACTIONS(1382), + [anon_sym___fastcall] = ACTIONS(1382), + [anon_sym___thiscall] = ACTIONS(1382), + [anon_sym___vectorcall] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_constexpr] = ACTIONS(1382), + [anon_sym_volatile] = ACTIONS(1382), + [anon_sym_restrict] = ACTIONS(1382), + [anon_sym___restrict__] = ACTIONS(1382), + [anon_sym__Atomic] = ACTIONS(1382), + [anon_sym__Noreturn] = ACTIONS(1382), + [anon_sym_noreturn] = ACTIONS(1382), + [anon_sym__Nonnull] = ACTIONS(1382), + [anon_sym_alignas] = ACTIONS(1382), + [anon_sym__Alignas] = ACTIONS(1382), + [aux_sym_primitive_type_token1] = ACTIONS(1382), + [anon_sym__BitInt] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1382), + [anon_sym_case] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_do] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_goto] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = ACTIONS(1382), + [anon_sym_offsetof] = ACTIONS(1382), + [anon_sym_static_assert] = ACTIONS(1382), + [anon_sym__Static_assert] = ACTIONS(1382), + [anon_sym_typeof] = ACTIONS(1382), + [anon_sym_typeof_unqual] = ACTIONS(1382), + [anon_sym__Generic] = ACTIONS(1382), + [anon_sym_asm] = ACTIONS(1382), + [anon_sym___asm__] = ACTIONS(1382), + [anon_sym___asm] = ACTIONS(1382), + [sym_number_literal] = ACTIONS(1384), + [anon_sym_L_SQUOTE] = ACTIONS(1384), + [anon_sym_u_SQUOTE] = ACTIONS(1384), + [anon_sym_U_SQUOTE] = ACTIONS(1384), + [anon_sym_u8_SQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_L_DQUOTE] = ACTIONS(1384), + [anon_sym_u_DQUOTE] = ACTIONS(1384), + [anon_sym_U_DQUOTE] = ACTIONS(1384), + [anon_sym_u8_DQUOTE] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [sym_true] = ACTIONS(1382), + [sym_false] = ACTIONS(1382), + [anon_sym_NULL] = ACTIONS(1382), + [anon_sym_nullptr] = ACTIONS(1382), [sym_comment] = ACTIONS(3), }, - [STATE(398)] = { - [sym_else_clause] = STATE(250), - [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(1748), - [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), + [STATE(340)] = { + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1390), + [aux_sym_preproc_include_token1] = ACTIONS(1390), + [aux_sym_preproc_def_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1390), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1390), + [aux_sym_preproc_embed_token1] = ACTIONS(1390), + [aux_sym_preproc_if_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), + [sym_preproc_directive] = ACTIONS(1390), + [anon_sym_LPAREN2] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [anon_sym_typedef] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym___attribute__] = ACTIONS(1390), + [anon_sym___attribute] = ACTIONS(1390), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), + [anon_sym___declspec] = ACTIONS(1390), + [anon_sym___cdecl] = ACTIONS(1390), + [anon_sym___clrcall] = ACTIONS(1390), + [anon_sym___stdcall] = ACTIONS(1390), + [anon_sym___fastcall] = ACTIONS(1390), + [anon_sym___thiscall] = ACTIONS(1390), + [anon_sym___vectorcall] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_constexpr] = ACTIONS(1390), + [anon_sym_volatile] = ACTIONS(1390), + [anon_sym_restrict] = ACTIONS(1390), + [anon_sym___restrict__] = ACTIONS(1390), + [anon_sym__Atomic] = ACTIONS(1390), + [anon_sym__Noreturn] = ACTIONS(1390), + [anon_sym_noreturn] = ACTIONS(1390), + [anon_sym__Nonnull] = ACTIONS(1390), + [anon_sym_alignas] = ACTIONS(1390), + [anon_sym__Alignas] = ACTIONS(1390), + [aux_sym_primitive_type_token1] = ACTIONS(1390), + [anon_sym__BitInt] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_switch] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_goto] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = ACTIONS(1390), + [anon_sym_offsetof] = ACTIONS(1390), + [anon_sym_static_assert] = ACTIONS(1390), + [anon_sym__Static_assert] = ACTIONS(1390), + [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_typeof_unqual] = ACTIONS(1390), + [anon_sym__Generic] = ACTIONS(1390), + [anon_sym_asm] = ACTIONS(1390), + [anon_sym___asm__] = ACTIONS(1390), + [anon_sym___asm] = ACTIONS(1390), + [sym_number_literal] = ACTIONS(1392), + [anon_sym_L_SQUOTE] = ACTIONS(1392), + [anon_sym_u_SQUOTE] = ACTIONS(1392), + [anon_sym_U_SQUOTE] = ACTIONS(1392), + [anon_sym_u8_SQUOTE] = ACTIONS(1392), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_L_DQUOTE] = ACTIONS(1392), + [anon_sym_u_DQUOTE] = ACTIONS(1392), + [anon_sym_U_DQUOTE] = ACTIONS(1392), + [anon_sym_u8_DQUOTE] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(1392), + [sym_true] = ACTIONS(1390), + [sym_false] = ACTIONS(1390), + [anon_sym_NULL] = ACTIONS(1390), + [anon_sym_nullptr] = ACTIONS(1390), [sym_comment] = ACTIONS(3), }, - [STATE(399)] = { - [sym_identifier] = ACTIONS(1750), - [anon_sym_LPAREN2] = ACTIONS(1753), - [anon_sym_BANG] = ACTIONS(1753), - [anon_sym_TILDE] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1753), - [anon_sym_AMP] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1753), - [anon_sym___extension__] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym___attribute__] = ACTIONS(1757), - [anon_sym___attribute] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1759), - [anon_sym___declspec] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1753), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_auto] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_inline] = ACTIONS(1757), - [anon_sym___inline] = ACTIONS(1757), - [anon_sym___inline__] = ACTIONS(1757), - [anon_sym___forceinline] = ACTIONS(1757), - [anon_sym_thread_local] = ACTIONS(1757), - [anon_sym___thread] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_constexpr] = ACTIONS(1757), - [anon_sym_volatile] = ACTIONS(1757), - [anon_sym_restrict] = ACTIONS(1757), - [anon_sym___restrict__] = ACTIONS(1757), - [anon_sym__Atomic] = ACTIONS(1757), - [anon_sym__Noreturn] = ACTIONS(1757), - [anon_sym_noreturn] = ACTIONS(1757), - [anon_sym__Nonnull] = ACTIONS(1757), - [anon_sym_alignas] = ACTIONS(1757), - [anon_sym__Alignas] = ACTIONS(1757), - [sym_primitive_type] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1755), - [anon_sym_switch] = ACTIONS(1755), - [anon_sym_case] = ACTIONS(1755), - [anon_sym_default] = ACTIONS(1755), - [anon_sym_while] = ACTIONS(1755), - [anon_sym_do] = ACTIONS(1755), - [anon_sym_for] = ACTIONS(1755), - [anon_sym_return] = ACTIONS(1755), - [anon_sym_break] = ACTIONS(1755), - [anon_sym_continue] = ACTIONS(1755), - [anon_sym_goto] = ACTIONS(1755), - [anon_sym___try] = ACTIONS(1755), - [anon_sym___leave] = ACTIONS(1755), - [anon_sym_DASH_DASH] = ACTIONS(1753), - [anon_sym_PLUS_PLUS] = ACTIONS(1753), - [anon_sym_sizeof] = ACTIONS(1755), - [anon_sym___alignof__] = ACTIONS(1755), - [anon_sym___alignof] = ACTIONS(1755), - [anon_sym__alignof] = ACTIONS(1755), - [anon_sym_alignof] = ACTIONS(1755), - [anon_sym__Alignof] = ACTIONS(1755), - [anon_sym_offsetof] = ACTIONS(1755), - [anon_sym__Generic] = ACTIONS(1755), - [anon_sym_asm] = ACTIONS(1755), - [anon_sym___asm__] = ACTIONS(1755), - [anon_sym___asm] = ACTIONS(1755), - [sym_number_literal] = ACTIONS(1753), - [anon_sym_L_SQUOTE] = ACTIONS(1753), - [anon_sym_u_SQUOTE] = ACTIONS(1753), - [anon_sym_U_SQUOTE] = ACTIONS(1753), - [anon_sym_u8_SQUOTE] = ACTIONS(1753), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_L_DQUOTE] = ACTIONS(1753), - [anon_sym_u_DQUOTE] = ACTIONS(1753), - [anon_sym_U_DQUOTE] = ACTIONS(1753), - [anon_sym_u8_DQUOTE] = ACTIONS(1753), - [anon_sym_DQUOTE] = ACTIONS(1753), - [sym_true] = ACTIONS(1755), - [sym_false] = ACTIONS(1755), - [anon_sym_NULL] = ACTIONS(1755), - [anon_sym_nullptr] = ACTIONS(1755), + [STATE(341)] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [aux_sym_preproc_include_token1] = ACTIONS(1484), + [aux_sym_preproc_def_token1] = ACTIONS(1484), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1484), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1484), + [aux_sym_preproc_embed_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(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [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_LBRACK_LBRACK] = ACTIONS(1482), + [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(1482), + [anon_sym_signed] = ACTIONS(1484), + [anon_sym_unsigned] = ACTIONS(1484), + [anon_sym_long] = ACTIONS(1484), + [anon_sym_short] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_auto] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_inline] = ACTIONS(1484), + [anon_sym___inline] = ACTIONS(1484), + [anon_sym___inline__] = ACTIONS(1484), + [anon_sym___forceinline] = ACTIONS(1484), + [anon_sym_thread_local] = ACTIONS(1484), + [anon_sym___thread] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_constexpr] = ACTIONS(1484), + [anon_sym_volatile] = ACTIONS(1484), + [anon_sym_restrict] = ACTIONS(1484), + [anon_sym___restrict__] = ACTIONS(1484), + [anon_sym__Atomic] = ACTIONS(1484), + [anon_sym__Noreturn] = ACTIONS(1484), + [anon_sym_noreturn] = ACTIONS(1484), + [anon_sym__Nonnull] = ACTIONS(1484), + [anon_sym_alignas] = ACTIONS(1484), + [anon_sym__Alignas] = ACTIONS(1484), + [aux_sym_primitive_type_token1] = ACTIONS(1484), + [anon_sym__BitInt] = 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(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [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_static_assert] = ACTIONS(1484), + [anon_sym__Static_assert] = ACTIONS(1484), + [anon_sym_typeof] = ACTIONS(1484), + [anon_sym_typeof_unqual] = 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(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(1484), + [sym_false] = ACTIONS(1484), + [anon_sym_NULL] = ACTIONS(1484), + [anon_sym_nullptr] = ACTIONS(1484), [sym_comment] = ACTIONS(3), }, - [STATE(400)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(342)] = { + [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_errwarn_token1] = ACTIONS(1400), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1400), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1400), + [anon_sym__BitInt] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1400), + [anon_sym__Static_assert] = ACTIONS(1400), + [anon_sym_typeof] = ACTIONS(1400), + [anon_sym_typeof_unqual] = 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(401)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(343)] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1489), + [aux_sym_preproc_include_token1] = ACTIONS(1489), + [aux_sym_preproc_def_token1] = ACTIONS(1489), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1489), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1489), + [aux_sym_preproc_embed_token1] = ACTIONS(1489), + [aux_sym_preproc_if_token1] = ACTIONS(1489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1489), + [sym_preproc_directive] = ACTIONS(1489), + [anon_sym_LPAREN2] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym___extension__] = ACTIONS(1489), + [anon_sym_typedef] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym___attribute__] = ACTIONS(1489), + [anon_sym___attribute] = ACTIONS(1489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym___declspec] = ACTIONS(1489), + [anon_sym___cdecl] = ACTIONS(1489), + [anon_sym___clrcall] = ACTIONS(1489), + [anon_sym___stdcall] = ACTIONS(1489), + [anon_sym___fastcall] = ACTIONS(1489), + [anon_sym___thiscall] = ACTIONS(1489), + [anon_sym___vectorcall] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_signed] = ACTIONS(1489), + [anon_sym_unsigned] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_auto] = ACTIONS(1489), + [anon_sym_register] = ACTIONS(1489), + [anon_sym_inline] = ACTIONS(1489), + [anon_sym___inline] = ACTIONS(1489), + [anon_sym___inline__] = ACTIONS(1489), + [anon_sym___forceinline] = ACTIONS(1489), + [anon_sym_thread_local] = ACTIONS(1489), + [anon_sym___thread] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_constexpr] = ACTIONS(1489), + [anon_sym_volatile] = ACTIONS(1489), + [anon_sym_restrict] = ACTIONS(1489), + [anon_sym___restrict__] = ACTIONS(1489), + [anon_sym__Atomic] = ACTIONS(1489), + [anon_sym__Noreturn] = ACTIONS(1489), + [anon_sym_noreturn] = ACTIONS(1489), + [anon_sym__Nonnull] = ACTIONS(1489), + [anon_sym_alignas] = ACTIONS(1489), + [anon_sym__Alignas] = ACTIONS(1489), + [aux_sym_primitive_type_token1] = ACTIONS(1489), + [anon_sym__BitInt] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_case] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_goto] = ACTIONS(1489), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_sizeof] = ACTIONS(1489), + [anon_sym___alignof__] = ACTIONS(1489), + [anon_sym___alignof] = ACTIONS(1489), + [anon_sym__alignof] = ACTIONS(1489), + [anon_sym_alignof] = ACTIONS(1489), + [anon_sym__Alignof] = ACTIONS(1489), + [anon_sym_offsetof] = ACTIONS(1489), + [anon_sym_static_assert] = ACTIONS(1489), + [anon_sym__Static_assert] = ACTIONS(1489), + [anon_sym_typeof] = ACTIONS(1489), + [anon_sym_typeof_unqual] = ACTIONS(1489), + [anon_sym__Generic] = ACTIONS(1489), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym___asm__] = ACTIONS(1489), + [anon_sym___asm] = ACTIONS(1489), + [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(1489), + [sym_false] = ACTIONS(1489), + [anon_sym_NULL] = ACTIONS(1489), + [anon_sym_nullptr] = ACTIONS(1489), [sym_comment] = ACTIONS(3), }, - [STATE(402)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1790), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(344)] = { + [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_errwarn_token1] = ACTIONS(1404), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1404), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1404), + [anon_sym__BitInt] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1404), + [anon_sym__Static_assert] = ACTIONS(1404), + [anon_sym_typeof] = ACTIONS(1404), + [anon_sym_typeof_unqual] = 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(403)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(345)] = { + [ts_builtin_sym_end] = ACTIONS(1410), + [sym_identifier] = ACTIONS(1408), + [aux_sym_preproc_include_token1] = ACTIONS(1408), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token1] = ACTIONS(1408), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1408), + [aux_sym_preproc_embed_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1408), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1408), + [sym_preproc_directive] = ACTIONS(1408), + [anon_sym_LPAREN2] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym___extension__] = ACTIONS(1408), + [anon_sym_typedef] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1408), + [anon_sym___attribute__] = ACTIONS(1408), + [anon_sym___attribute] = ACTIONS(1408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1410), + [anon_sym___declspec] = ACTIONS(1408), + [anon_sym___cdecl] = ACTIONS(1408), + [anon_sym___clrcall] = ACTIONS(1408), + [anon_sym___stdcall] = ACTIONS(1408), + [anon_sym___fastcall] = ACTIONS(1408), + [anon_sym___thiscall] = ACTIONS(1408), + [anon_sym___vectorcall] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_signed] = ACTIONS(1408), + [anon_sym_unsigned] = ACTIONS(1408), + [anon_sym_long] = ACTIONS(1408), + [anon_sym_short] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_auto] = ACTIONS(1408), + [anon_sym_register] = ACTIONS(1408), + [anon_sym_inline] = ACTIONS(1408), + [anon_sym___inline] = ACTIONS(1408), + [anon_sym___inline__] = ACTIONS(1408), + [anon_sym___forceinline] = ACTIONS(1408), + [anon_sym_thread_local] = ACTIONS(1408), + [anon_sym___thread] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_constexpr] = ACTIONS(1408), + [anon_sym_volatile] = ACTIONS(1408), + [anon_sym_restrict] = ACTIONS(1408), + [anon_sym___restrict__] = ACTIONS(1408), + [anon_sym__Atomic] = ACTIONS(1408), + [anon_sym__Noreturn] = ACTIONS(1408), + [anon_sym_noreturn] = ACTIONS(1408), + [anon_sym__Nonnull] = ACTIONS(1408), + [anon_sym_alignas] = ACTIONS(1408), + [anon_sym__Alignas] = ACTIONS(1408), + [aux_sym_primitive_type_token1] = ACTIONS(1408), + [anon_sym__BitInt] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [anon_sym_do] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_goto] = ACTIONS(1408), + [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PLUS_PLUS] = ACTIONS(1410), + [anon_sym_sizeof] = ACTIONS(1408), + [anon_sym___alignof__] = ACTIONS(1408), + [anon_sym___alignof] = ACTIONS(1408), + [anon_sym__alignof] = ACTIONS(1408), + [anon_sym_alignof] = ACTIONS(1408), + [anon_sym__Alignof] = ACTIONS(1408), + [anon_sym_offsetof] = ACTIONS(1408), + [anon_sym_static_assert] = ACTIONS(1408), + [anon_sym__Static_assert] = ACTIONS(1408), + [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_typeof_unqual] = ACTIONS(1408), + [anon_sym__Generic] = ACTIONS(1408), + [anon_sym_asm] = ACTIONS(1408), + [anon_sym___asm__] = ACTIONS(1408), + [anon_sym___asm] = ACTIONS(1408), + [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(1408), + [sym_false] = ACTIONS(1408), + [anon_sym_NULL] = ACTIONS(1408), + [anon_sym_nullptr] = ACTIONS(1408), [sym_comment] = ACTIONS(3), }, - [STATE(404)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(346)] = { + [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_errwarn_token1] = ACTIONS(1412), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1412), + [aux_sym_preproc_embed_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_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_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), + [aux_sym_primitive_type_token1] = ACTIONS(1412), + [anon_sym__BitInt] = 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(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_static_assert] = ACTIONS(1412), + [anon_sym__Static_assert] = ACTIONS(1412), + [anon_sym_typeof] = ACTIONS(1412), + [anon_sym_typeof_unqual] = 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(405)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(347)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___attribute] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(406)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1794), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(348)] = { + [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_errwarn_token1] = ACTIONS(1416), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1416), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1416), + [anon_sym__BitInt] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1416), + [anon_sym__Static_assert] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_typeof_unqual] = 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(407)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(349)] = { + [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_errwarn_token1] = ACTIONS(1420), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1420), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1420), + [anon_sym__BitInt] = ACTIONS(1420), + [anon_sym_enum] = ACTIONS(1420), + [anon_sym_struct] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1420), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1420), + [anon_sym__Static_assert] = ACTIONS(1420), + [anon_sym_typeof] = ACTIONS(1420), + [anon_sym_typeof_unqual] = 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), }, - [STATE(408)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_COLON] = ACTIONS(1790), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(350)] = { + [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_errwarn_token1] = ACTIONS(1424), + [aux_sym_preproc_errwarn_token2] = ACTIONS(1424), + [aux_sym_preproc_embed_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_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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1424), + [anon_sym__BitInt] = ACTIONS(1424), + [anon_sym_enum] = ACTIONS(1424), + [anon_sym_struct] = ACTIONS(1424), + [anon_sym_union] = ACTIONS(1424), + [anon_sym_if] = 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_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_static_assert] = ACTIONS(1424), + [anon_sym__Static_assert] = ACTIONS(1424), + [anon_sym_typeof] = ACTIONS(1424), + [anon_sym_typeof_unqual] = 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(409)] = { - [sym_expression] = STATE(889), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_initializer_list] = STATE(678), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1799), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1380), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_SLASH] = ACTIONS(1386), - [anon_sym_PERCENT] = ACTIONS(1380), - [anon_sym_PIPE_PIPE] = ACTIONS(1380), - [anon_sym_AMP_AMP] = ACTIONS(1380), - [anon_sym_PIPE] = ACTIONS(1386), - [anon_sym_CARET] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1386), - [anon_sym_EQ_EQ] = ACTIONS(1380), - [anon_sym_BANG_EQ] = ACTIONS(1380), - [anon_sym_GT] = ACTIONS(1386), - [anon_sym_GT_EQ] = ACTIONS(1380), - [anon_sym_LT_EQ] = ACTIONS(1380), - [anon_sym_LT] = ACTIONS(1386), - [anon_sym_LT_LT] = ACTIONS(1380), - [anon_sym_GT_GT] = ACTIONS(1380), - [anon_sym___extension__] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1380), - [anon_sym_RBRACK] = ACTIONS(1380), - [anon_sym_QMARK] = ACTIONS(1380), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1807), - [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(1386), - [anon_sym_DASH_GT] = ACTIONS(1380), - [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(351)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1972), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(410)] = { - [sym_string_literal] = STATE(621), - [aux_sym_sized_type_specifier_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(1764), - [anon_sym_LPAREN2] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_SLASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1764), - [anon_sym_AMP_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1764), - [anon_sym_GT] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1770), - [anon_sym_SEMI] = ACTIONS(1764), - [anon_sym___extension__] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1762), - [anon_sym___attribute__] = ACTIONS(1762), - [anon_sym___attribute] = ACTIONS(1762), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1778), - [anon_sym___declspec] = ACTIONS(1762), - [anon_sym___based] = ACTIONS(1762), - [anon_sym___cdecl] = ACTIONS(1762), - [anon_sym___clrcall] = ACTIONS(1762), - [anon_sym___stdcall] = ACTIONS(1762), - [anon_sym___fastcall] = ACTIONS(1762), - [anon_sym___thiscall] = ACTIONS(1762), - [anon_sym___vectorcall] = ACTIONS(1762), - [anon_sym_signed] = ACTIONS(1780), - [anon_sym_unsigned] = ACTIONS(1780), - [anon_sym_long] = ACTIONS(1780), - [anon_sym_short] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1782), - [anon_sym_auto] = ACTIONS(1762), - [anon_sym_register] = ACTIONS(1762), - [anon_sym_inline] = ACTIONS(1762), - [anon_sym___inline] = ACTIONS(1762), - [anon_sym___inline__] = ACTIONS(1762), - [anon_sym___forceinline] = ACTIONS(1762), - [anon_sym_thread_local] = ACTIONS(1762), - [anon_sym___thread] = ACTIONS(1762), - [anon_sym_const] = ACTIONS(1762), - [anon_sym_constexpr] = ACTIONS(1762), - [anon_sym_volatile] = ACTIONS(1762), - [anon_sym_restrict] = ACTIONS(1762), - [anon_sym___restrict__] = ACTIONS(1762), - [anon_sym__Atomic] = ACTIONS(1762), - [anon_sym__Noreturn] = ACTIONS(1762), - [anon_sym_noreturn] = ACTIONS(1762), - [anon_sym__Nonnull] = ACTIONS(1762), - [anon_sym_alignas] = ACTIONS(1762), - [anon_sym__Alignas] = ACTIONS(1762), - [anon_sym_QMARK] = ACTIONS(1764), - [anon_sym_STAR_EQ] = ACTIONS(1786), - [anon_sym_SLASH_EQ] = ACTIONS(1786), - [anon_sym_PERCENT_EQ] = ACTIONS(1786), - [anon_sym_PLUS_EQ] = ACTIONS(1786), - [anon_sym_DASH_EQ] = ACTIONS(1786), - [anon_sym_LT_LT_EQ] = ACTIONS(1786), - [anon_sym_GT_GT_EQ] = ACTIONS(1786), - [anon_sym_AMP_EQ] = ACTIONS(1786), - [anon_sym_CARET_EQ] = ACTIONS(1786), - [anon_sym_PIPE_EQ] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1764), - [anon_sym_DOT] = ACTIONS(1764), - [anon_sym_DASH_GT] = ACTIONS(1764), - [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(352)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1959), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(411)] = { - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_based_modifier] = STATE(1900), - [sym_ms_call_modifier] = STATE(1257), - [sym__declarator] = STATE(1442), - [sym__abstract_declarator] = STATE(1527), - [sym_parenthesized_declarator] = STATE(1300), - [sym_abstract_parenthesized_declarator] = STATE(1443), - [sym_attributed_declarator] = STATE(1300), - [sym_pointer_declarator] = STATE(1300), - [sym_abstract_pointer_declarator] = STATE(1443), - [sym_function_declarator] = STATE(1300), - [sym_abstract_function_declarator] = STATE(1443), - [sym_array_declarator] = STATE(1300), - [sym_abstract_array_declarator] = STATE(1443), - [sym_compound_statement] = STATE(1943), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_variadic_parameter] = STATE(1598), - [sym_parameter_list] = STATE(1452), - [sym_parameter_declaration] = STATE(1598), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_LPAREN2] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1817), - [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(1819), - [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(1821), - [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(353)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(2004), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(412)] = { - [sym_type_qualifier] = STATE(662), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1097), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(662), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(354)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1897), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(413)] = { - [sym_type_qualifier] = STATE(414), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1083), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(414), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_RBRACK] = ACTIONS(1845), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(355)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1895), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(414)] = { - [sym_type_qualifier] = STATE(662), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1099), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(662), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1849), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(356)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(2035), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(415)] = { - [sym_type_qualifier] = STATE(662), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1075), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(662), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1851), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1853), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(357)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1875), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(416)] = { - [sym_type_qualifier] = STATE(412), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1089), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(412), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1857), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(358)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1982), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(417)] = { - [sym_type_qualifier] = STATE(662), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1081), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(662), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(359)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1832), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(418)] = { - [sym_type_qualifier] = STATE(662), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1087), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(662), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_RBRACK] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(360)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1883), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(419)] = { - [sym_type_qualifier] = STATE(418), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1100), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(418), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_RBRACK] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(361)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1835), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(420)] = { - [sym_type_qualifier] = STATE(417), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1071), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1875), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1877), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(362)] = { + [sym_compound_statement] = STATE(2070), + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1920), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(421)] = { - [sym_type_qualifier] = STATE(415), - [sym_alignas_qualifier] = STATE(700), - [sym_expression] = STATE(1096), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_array_declarator_repeat1] = STATE(415), - [sym_identifier] = ACTIONS(1799), - [anon_sym_LPAREN2] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_TILDE] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym___extension__] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_RBRACK] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_constexpr] = ACTIONS(1835), - [anon_sym_volatile] = ACTIONS(1835), - [anon_sym_restrict] = ACTIONS(1835), - [anon_sym___restrict__] = ACTIONS(1835), - [anon_sym__Atomic] = ACTIONS(1835), - [anon_sym__Noreturn] = ACTIONS(1835), - [anon_sym_noreturn] = ACTIONS(1835), - [anon_sym__Nonnull] = ACTIONS(1835), - [anon_sym_alignas] = ACTIONS(1837), - [anon_sym__Alignas] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1839), - [anon_sym_sizeof] = ACTIONS(1807), - [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(363)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_else_token1] = ACTIONS(1494), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(422)] = { - [sym_expression] = STATE(1036), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(911), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(911), - [sym_call_expression] = STATE(911), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(911), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(911), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1887), - [anon_sym_LPAREN2] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_STAR] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym___extension__] = ACTIONS(1902), - [anon_sym_static] = ACTIONS(1706), - [anon_sym_RBRACK] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1706), - [anon_sym_constexpr] = ACTIONS(1706), - [anon_sym_volatile] = ACTIONS(1706), - [anon_sym_restrict] = ACTIONS(1706), - [anon_sym___restrict__] = ACTIONS(1706), - [anon_sym__Atomic] = ACTIONS(1706), - [anon_sym__Noreturn] = ACTIONS(1706), - [anon_sym_noreturn] = ACTIONS(1706), - [anon_sym__Nonnull] = ACTIONS(1706), - [anon_sym_alignas] = ACTIONS(1706), - [anon_sym__Alignas] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1905), - [anon_sym_PLUS_PLUS] = ACTIONS(1905), - [anon_sym_sizeof] = ACTIONS(1908), - [anon_sym___alignof__] = ACTIONS(1911), - [anon_sym___alignof] = ACTIONS(1911), - [anon_sym__alignof] = ACTIONS(1911), - [anon_sym_alignof] = ACTIONS(1911), - [anon_sym__Alignof] = ACTIONS(1911), - [anon_sym_offsetof] = ACTIONS(1914), - [anon_sym__Generic] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1920), - [anon_sym___asm__] = ACTIONS(1920), - [anon_sym___asm] = ACTIONS(1920), - [sym_number_literal] = ACTIONS(1923), - [anon_sym_L_SQUOTE] = ACTIONS(1926), - [anon_sym_u_SQUOTE] = ACTIONS(1926), - [anon_sym_U_SQUOTE] = ACTIONS(1926), - [anon_sym_u8_SQUOTE] = ACTIONS(1926), - [anon_sym_SQUOTE] = ACTIONS(1926), - [anon_sym_L_DQUOTE] = ACTIONS(1929), - [anon_sym_u_DQUOTE] = ACTIONS(1929), - [anon_sym_U_DQUOTE] = ACTIONS(1929), - [anon_sym_u8_DQUOTE] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym_true] = ACTIONS(1932), - [sym_false] = ACTIONS(1932), - [anon_sym_NULL] = ACTIONS(1935), - [anon_sym_nullptr] = ACTIONS(1935), + [STATE(364)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(2063), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(423)] = { - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1118), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_ms_call_modifier] = STATE(1375), - [sym__abstract_declarator] = STATE(1527), - [sym_abstract_parenthesized_declarator] = STATE(1443), - [sym_abstract_pointer_declarator] = STATE(1443), - [sym_abstract_function_declarator] = STATE(1443), - [sym_abstract_array_declarator] = STATE(1443), - [sym_compound_statement] = STATE(1943), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym_variadic_parameter] = STATE(1598), - [sym_parameter_list] = STATE(1452), - [sym_parameter_declaration] = STATE(1598), - [sym_macro_type_specifier] = STATE(770), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1811), - [anon_sym_RPAREN] = ACTIONS(1813), - [anon_sym_LPAREN2] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1942), - [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(1821), - [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(365)] = { + [sym_attribute_declaration] = STATE(365), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1545), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1563), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1575), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1587), + [anon_sym___try] = ACTIONS(1590), + [anon_sym___leave] = ACTIONS(1593), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_sizeof] = ACTIONS(1599), + [anon_sym___alignof__] = ACTIONS(1602), + [anon_sym___alignof] = ACTIONS(1602), + [anon_sym__alignof] = ACTIONS(1602), + [anon_sym_alignof] = ACTIONS(1602), + [anon_sym__Alignof] = ACTIONS(1602), + [anon_sym_offsetof] = ACTIONS(1605), + [anon_sym_static_assert] = ACTIONS(1608), + [anon_sym__Static_assert] = ACTIONS(1608), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym_typeof_unqual] = ACTIONS(1611), + [anon_sym__Generic] = ACTIONS(1614), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym___asm__] = ACTIONS(1617), + [anon_sym___asm] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1620), + [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(1626), + [anon_sym_u_DQUOTE] = ACTIONS(1626), + [anon_sym_U_DQUOTE] = ACTIONS(1626), + [anon_sym_u8_DQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1632), + [anon_sym_nullptr] = ACTIONS(1632), [sym_comment] = ACTIONS(3), }, - [STATE(424)] = { - [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(1916), - [sym_preproc_elif_in_field_declaration_list] = STATE(1916), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1916), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1948), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(366)] = { + [sym_attribute_declaration] = STATE(372), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(151), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(425)] = { - [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(1913), - [sym_preproc_elif_in_field_declaration_list] = STATE(1913), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1913), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(435), - [sym_field_declaration] = STATE(435), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(435), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1960), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(367)] = { + [sym_attribute_declaration] = STATE(389), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(426)] = { - [sym_preproc_def] = STATE(428), - [sym_preproc_function_def] = STATE(428), - [sym_preproc_call] = STATE(428), - [sym_preproc_if_in_field_declaration_list] = STATE(428), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(428), - [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(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(428), - [sym_field_declaration] = STATE(428), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(428), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(368)] = { + [sym_attribute_declaration] = STATE(372), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(192), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(427)] = { - [sym_preproc_def] = STATE(429), - [sym_preproc_function_def] = STATE(429), - [sym_preproc_call] = STATE(429), - [sym_preproc_if_in_field_declaration_list] = STATE(429), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(429), - [sym_preproc_else_in_field_declaration_list] = STATE(1915), - [sym_preproc_elif_in_field_declaration_list] = STATE(1915), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1915), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(429), - [sym_field_declaration] = STATE(429), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(429), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1964), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(369)] = { + [sym_attribute_declaration] = STATE(369), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(177), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_if] = ACTIONS(1648), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_case] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1657), + [anon_sym_while] = ACTIONS(1660), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1672), + [anon_sym_continue] = ACTIONS(1675), + [anon_sym_goto] = ACTIONS(1678), + [anon_sym___try] = ACTIONS(1681), + [anon_sym___leave] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_sizeof] = ACTIONS(1599), + [anon_sym___alignof__] = ACTIONS(1602), + [anon_sym___alignof] = ACTIONS(1602), + [anon_sym__alignof] = ACTIONS(1602), + [anon_sym_alignof] = ACTIONS(1602), + [anon_sym__Alignof] = ACTIONS(1602), + [anon_sym_offsetof] = ACTIONS(1605), + [anon_sym_static_assert] = ACTIONS(1608), + [anon_sym__Static_assert] = ACTIONS(1608), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym_typeof_unqual] = ACTIONS(1611), + [anon_sym__Generic] = ACTIONS(1614), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym___asm__] = ACTIONS(1617), + [anon_sym___asm] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1620), + [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(1626), + [anon_sym_u_DQUOTE] = ACTIONS(1626), + [anon_sym_U_DQUOTE] = ACTIONS(1626), + [anon_sym_u8_DQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1632), + [anon_sym_nullptr] = ACTIONS(1632), [sym_comment] = ACTIONS(3), }, - [STATE(428)] = { - [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(1918), - [sym_preproc_elif_in_field_declaration_list] = STATE(1918), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1918), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1966), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(370)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(2054), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(429)] = { - [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(1921), - [sym_preproc_elif_in_field_declaration_list] = STATE(1921), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1921), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1968), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(371)] = { + [sym_attribute_declaration] = STATE(389), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(149), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, - [STATE(430)] = { - [sym_preproc_def] = STATE(444), - [sym_preproc_function_def] = STATE(444), - [sym_preproc_call] = STATE(444), - [sym_preproc_if_in_field_declaration_list] = STATE(444), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), - [sym_preproc_else_in_field_declaration_list] = STATE(1892), - [sym_preproc_elif_in_field_declaration_list] = STATE(1892), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1892), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1970), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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(372)] = { + [sym_attribute_declaration] = STATE(369), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(177), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(373)] = { + [sym_attribute_declaration] = STATE(389), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(235), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(374)] = { + [sym_attribute_declaration] = STATE(392), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(80), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(375)] = { + [sym_attribute_declaration] = STATE(392), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(104), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(376)] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(99), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1689), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1701), + [anon_sym_case] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1707), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_do] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_goto] = ACTIONS(1728), + [anon_sym___try] = ACTIONS(1731), + [anon_sym___leave] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_sizeof] = ACTIONS(1599), + [anon_sym___alignof__] = ACTIONS(1602), + [anon_sym___alignof] = ACTIONS(1602), + [anon_sym__alignof] = ACTIONS(1602), + [anon_sym_alignof] = ACTIONS(1602), + [anon_sym__Alignof] = ACTIONS(1602), + [anon_sym_offsetof] = ACTIONS(1605), + [anon_sym_static_assert] = ACTIONS(1608), + [anon_sym__Static_assert] = ACTIONS(1608), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym_typeof_unqual] = ACTIONS(1611), + [anon_sym__Generic] = ACTIONS(1614), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym___asm__] = ACTIONS(1617), + [anon_sym___asm] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1620), + [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(1626), + [anon_sym_u_DQUOTE] = ACTIONS(1626), + [anon_sym_U_DQUOTE] = ACTIONS(1626), + [anon_sym_u8_DQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1632), + [anon_sym_nullptr] = ACTIONS(1632), + [sym_comment] = ACTIONS(3), + }, + [STATE(377)] = { + [sym_attribute_declaration] = STATE(392), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(86), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(378)] = { + [sym_attribute_declaration] = STATE(392), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(379)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(411), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(380)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(235), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(381)] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1737), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_case] = ACTIONS(1743), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1584), + [anon_sym_goto] = ACTIONS(1587), + [anon_sym___try] = ACTIONS(1755), + [anon_sym___leave] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_sizeof] = ACTIONS(1599), + [anon_sym___alignof__] = ACTIONS(1602), + [anon_sym___alignof] = ACTIONS(1602), + [anon_sym__alignof] = ACTIONS(1602), + [anon_sym_alignof] = ACTIONS(1602), + [anon_sym__Alignof] = ACTIONS(1602), + [anon_sym_offsetof] = ACTIONS(1605), + [anon_sym_static_assert] = ACTIONS(1608), + [anon_sym__Static_assert] = ACTIONS(1608), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym_typeof_unqual] = ACTIONS(1611), + [anon_sym__Generic] = ACTIONS(1614), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym___asm__] = ACTIONS(1617), + [anon_sym___asm] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1620), + [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(1626), + [anon_sym_u_DQUOTE] = ACTIONS(1626), + [anon_sym_U_DQUOTE] = ACTIONS(1626), + [anon_sym_u8_DQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1632), + [anon_sym_nullptr] = ACTIONS(1632), + [sym_comment] = ACTIONS(3), + }, + [STATE(382)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(186), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(383)] = { + [sym_attribute_declaration] = STATE(381), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(159), + [sym_expression_statement] = STATE(159), + [sym_if_statement] = STATE(159), + [sym_switch_statement] = STATE(159), + [sym_case_statement] = STATE(159), + [sym_while_statement] = STATE(159), + [sym_do_statement] = STATE(159), + [sym_for_statement] = STATE(159), + [sym_return_statement] = STATE(159), + [sym_break_statement] = STATE(159), + [sym_continue_statement] = STATE(159), + [sym_goto_statement] = STATE(159), + [sym_seh_try_statement] = STATE(159), + [sym_seh_leave_statement] = STATE(159), + [sym_expression] = STATE(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(381), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(384)] = { + [sym_attribute_declaration] = STATE(372), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(156), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(385)] = { + [sym_attribute_declaration] = STATE(393), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(150), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(386)] = { + [sym_attribute_declaration] = STATE(393), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(207), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(387)] = { + [sym_attribute_declaration] = STATE(387), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(200), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(387), + [sym_identifier] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1539), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym___extension__] = ACTIONS(1548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1772), + [anon_sym_case] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1778), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1790), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_goto] = ACTIONS(1799), + [anon_sym___try] = ACTIONS(1802), + [anon_sym___leave] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1596), + [anon_sym_PLUS_PLUS] = ACTIONS(1596), + [anon_sym_sizeof] = ACTIONS(1599), + [anon_sym___alignof__] = ACTIONS(1602), + [anon_sym___alignof] = ACTIONS(1602), + [anon_sym__alignof] = ACTIONS(1602), + [anon_sym_alignof] = ACTIONS(1602), + [anon_sym__Alignof] = ACTIONS(1602), + [anon_sym_offsetof] = ACTIONS(1605), + [anon_sym_static_assert] = ACTIONS(1608), + [anon_sym__Static_assert] = ACTIONS(1608), + [anon_sym_typeof] = ACTIONS(1611), + [anon_sym_typeof_unqual] = ACTIONS(1611), + [anon_sym__Generic] = ACTIONS(1614), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym___asm__] = ACTIONS(1617), + [anon_sym___asm] = ACTIONS(1617), + [sym_number_literal] = ACTIONS(1620), + [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(1626), + [anon_sym_u_DQUOTE] = ACTIONS(1626), + [anon_sym_U_DQUOTE] = ACTIONS(1626), + [anon_sym_u8_DQUOTE] = ACTIONS(1626), + [anon_sym_DQUOTE] = ACTIONS(1626), + [sym_true] = ACTIONS(1629), + [sym_false] = ACTIONS(1629), + [anon_sym_NULL] = ACTIONS(1632), + [anon_sym_nullptr] = ACTIONS(1632), + [sym_comment] = ACTIONS(3), + }, + [STATE(388)] = { + [sym_attribute_declaration] = STATE(372), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(158), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(416), + [anon_sym_if] = ACTIONS(420), + [anon_sym_switch] = ACTIONS(422), + [anon_sym_case] = ACTIONS(424), + [anon_sym_default] = ACTIONS(426), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_return] = ACTIONS(434), + [anon_sym_break] = ACTIONS(436), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_goto] = ACTIONS(440), + [anon_sym___try] = ACTIONS(442), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(389)] = { + [sym_attribute_declaration] = STATE(365), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(249), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(365), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(390)] = { + [sym_attribute_declaration] = STATE(393), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(218), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(391)] = { + [sym_attribute_declaration] = STATE(393), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(220), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(392)] = { + [sym_attribute_declaration] = STATE(376), + [sym_compound_statement] = STATE(115), + [sym_attributed_statement] = STATE(115), + [sym_statement] = STATE(99), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym_seh_try_statement] = STATE(115), + [sym_seh_leave_statement] = STATE(115), + [sym_expression] = STATE(1083), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1904), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(376), + [sym_identifier] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_if] = ACTIONS(151), + [anon_sym_switch] = ACTIONS(153), + [anon_sym_case] = ACTIONS(155), + [anon_sym_default] = ACTIONS(157), + [anon_sym_while] = ACTIONS(159), + [anon_sym_do] = ACTIONS(161), + [anon_sym_for] = ACTIONS(163), + [anon_sym_return] = ACTIONS(165), + [anon_sym_break] = ACTIONS(167), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_goto] = ACTIONS(171), + [anon_sym___try] = ACTIONS(173), + [anon_sym___leave] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(393)] = { + [sym_attribute_declaration] = STATE(387), + [sym_compound_statement] = STATE(195), + [sym_attributed_statement] = STATE(195), + [sym_statement] = STATE(200), + [sym_labeled_statement] = STATE(195), + [sym_expression_statement] = STATE(195), + [sym_if_statement] = STATE(195), + [sym_switch_statement] = STATE(195), + [sym_case_statement] = STATE(195), + [sym_while_statement] = STATE(195), + [sym_do_statement] = STATE(195), + [sym_for_statement] = STATE(195), + [sym_return_statement] = STATE(195), + [sym_break_statement] = STATE(195), + [sym_continue_statement] = STATE(195), + [sym_goto_statement] = STATE(195), + [sym_seh_try_statement] = STATE(195), + [sym_seh_leave_statement] = STATE(195), + [sym_expression] = STATE(1088), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1906), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(387), + [sym_identifier] = ACTIONS(1758), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(554), + [anon_sym_if] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(558), + [anon_sym_case] = ACTIONS(560), + [anon_sym_default] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_do] = ACTIONS(566), + [anon_sym_for] = ACTIONS(568), + [anon_sym_return] = ACTIONS(570), + [anon_sym_break] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_goto] = ACTIONS(576), + [anon_sym___try] = ACTIONS(578), + [anon_sym___leave] = ACTIONS(580), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(394)] = { + [sym_attribute_declaration] = STATE(389), + [sym_compound_statement] = STATE(167), + [sym_attributed_statement] = STATE(167), + [sym_statement] = STATE(180), + [sym_labeled_statement] = STATE(167), + [sym_expression_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_switch_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(167), + [sym_for_statement] = STATE(167), + [sym_return_statement] = STATE(167), + [sym_break_statement] = STATE(167), + [sym_continue_statement] = STATE(167), + [sym_goto_statement] = STATE(167), + [sym_seh_try_statement] = STATE(167), + [sym_seh_leave_statement] = STATE(167), + [sym_expression] = STATE(1057), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2065), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(69), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(73), + [anon_sym_default] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(81), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1015), + [anon_sym___leave] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(395)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(2040), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(396)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(2055), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(397)] = { + [sym_attribute_declaration] = STATE(383), + [sym_compound_statement] = STATE(159), + [sym_attributed_statement] = STATE(159), + [sym_statement] = STATE(180), + [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(1093), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1991), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_attributed_declarator_repeat1] = STATE(383), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(408), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_if] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(71), + [anon_sym_case] = ACTIONS(1202), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_do] = ACTIONS(79), + [anon_sym_for] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(83), + [anon_sym_break] = ACTIONS(85), + [anon_sym_continue] = ACTIONS(87), + [anon_sym_goto] = ACTIONS(89), + [anon_sym___try] = ACTIONS(1200), + [anon_sym___leave] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(398)] = { + [sym_expression] = STATE(1019), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1811), + [anon_sym_typedef] = ACTIONS(1814), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1818), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [anon_sym___inline] = ACTIONS(1816), + [anon_sym___inline__] = ACTIONS(1816), + [anon_sym___forceinline] = ACTIONS(1816), + [anon_sym_thread_local] = ACTIONS(1816), + [anon_sym___thread] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_constexpr] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym___restrict__] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym__Noreturn] = ACTIONS(1816), + [anon_sym_noreturn] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym_alignas] = ACTIONS(1816), + [anon_sym__Alignas] = ACTIONS(1816), + [aux_sym_primitive_type_token1] = ACTIONS(1816), + [anon_sym__BitInt] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(399)] = { + [sym_expression] = STATE(1019), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1811), + [anon_sym_typedef] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1818), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [anon_sym___inline] = ACTIONS(1816), + [anon_sym___inline__] = ACTIONS(1816), + [anon_sym___forceinline] = ACTIONS(1816), + [anon_sym_thread_local] = ACTIONS(1816), + [anon_sym___thread] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_constexpr] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym___restrict__] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym__Noreturn] = ACTIONS(1816), + [anon_sym_noreturn] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym_alignas] = ACTIONS(1816), + [anon_sym__Alignas] = ACTIONS(1816), + [aux_sym_primitive_type_token1] = ACTIONS(1816), + [anon_sym__BitInt] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(400)] = { + [sym_expression] = STATE(1019), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1811), + [anon_sym_typedef] = ACTIONS(1822), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1818), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [anon_sym___inline] = ACTIONS(1816), + [anon_sym___inline__] = ACTIONS(1816), + [anon_sym___forceinline] = ACTIONS(1816), + [anon_sym_thread_local] = ACTIONS(1816), + [anon_sym___thread] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_constexpr] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym___restrict__] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym__Noreturn] = ACTIONS(1816), + [anon_sym_noreturn] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym_alignas] = ACTIONS(1816), + [anon_sym__Alignas] = ACTIONS(1816), + [aux_sym_primitive_type_token1] = ACTIONS(1816), + [anon_sym__BitInt] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(401)] = { + [sym_expression] = STATE(1019), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1811), + [anon_sym_typedef] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1818), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [anon_sym___inline] = ACTIONS(1816), + [anon_sym___inline__] = ACTIONS(1816), + [anon_sym___forceinline] = ACTIONS(1816), + [anon_sym_thread_local] = ACTIONS(1816), + [anon_sym___thread] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_constexpr] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym___restrict__] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym__Noreturn] = ACTIONS(1816), + [anon_sym_noreturn] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym_alignas] = ACTIONS(1816), + [anon_sym__Alignas] = ACTIONS(1816), + [aux_sym_primitive_type_token1] = ACTIONS(1816), + [anon_sym__BitInt] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(402)] = { + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1123), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1916), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(403)] = { + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1108), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1868), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(404)] = { + [sym_type_qualifier] = STATE(986), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(1117), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_expression] = STATE(1100), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_type_descriptor] = STATE(1825), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__type_definition_type_repeat1] = STATE(986), + [aux_sym_sized_type_specifier_repeat1] = STATE(1041), + [sym_identifier] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1510), + [anon_sym_unsigned] = ACTIONS(1510), + [anon_sym_long] = ACTIONS(1510), + [anon_sym_short] = ACTIONS(1510), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(405)] = { + [sym_expression] = STATE(1019), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1808), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym___attribute__] = ACTIONS(1816), + [anon_sym___attribute] = ACTIONS(1816), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1818), + [anon_sym___declspec] = ACTIONS(1816), + [anon_sym_signed] = ACTIONS(1816), + [anon_sym_unsigned] = ACTIONS(1816), + [anon_sym_long] = ACTIONS(1816), + [anon_sym_short] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_auto] = ACTIONS(1816), + [anon_sym_register] = ACTIONS(1816), + [anon_sym_inline] = ACTIONS(1816), + [anon_sym___inline] = ACTIONS(1816), + [anon_sym___inline__] = ACTIONS(1816), + [anon_sym___forceinline] = ACTIONS(1816), + [anon_sym_thread_local] = ACTIONS(1816), + [anon_sym___thread] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_constexpr] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym___restrict__] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym__Noreturn] = ACTIONS(1816), + [anon_sym_noreturn] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym_alignas] = ACTIONS(1816), + [anon_sym__Alignas] = ACTIONS(1816), + [aux_sym_primitive_type_token1] = ACTIONS(1816), + [anon_sym__BitInt] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(406)] = { + [sym_expression] = STATE(941), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(407)] = { + [sym_identifier] = ACTIONS(1834), + [anon_sym_COMMA] = ACTIONS(1836), + [anon_sym_RPAREN] = ACTIONS(1836), + [anon_sym_LPAREN2] = ACTIONS(1836), + [anon_sym_BANG] = ACTIONS(1836), + [anon_sym_TILDE] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym___extension__] = ACTIONS(1834), + [anon_sym_extern] = ACTIONS(1834), + [anon_sym___attribute__] = ACTIONS(1834), + [anon_sym___attribute] = ACTIONS(1834), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1836), + [anon_sym___declspec] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_signed] = ACTIONS(1834), + [anon_sym_unsigned] = ACTIONS(1834), + [anon_sym_long] = ACTIONS(1834), + [anon_sym_short] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_static] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(1836), + [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_const] = 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), + [aux_sym_primitive_type_token1] = ACTIONS(1834), + [anon_sym__BitInt] = ACTIONS(1834), + [anon_sym_enum] = ACTIONS(1834), + [anon_sym_COLON] = ACTIONS(1836), + [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___try] = ACTIONS(1834), + [anon_sym___leave] = ACTIONS(1834), + [anon_sym_DASH_DASH] = ACTIONS(1836), + [anon_sym_PLUS_PLUS] = ACTIONS(1836), + [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_static_assert] = ACTIONS(1834), + [anon_sym__Static_assert] = ACTIONS(1834), + [anon_sym_typeof] = ACTIONS(1834), + [anon_sym_typeof_unqual] = 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(1836), + [anon_sym_L_SQUOTE] = ACTIONS(1836), + [anon_sym_u_SQUOTE] = ACTIONS(1836), + [anon_sym_U_SQUOTE] = ACTIONS(1836), + [anon_sym_u8_SQUOTE] = ACTIONS(1836), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_L_DQUOTE] = ACTIONS(1836), + [anon_sym_u_DQUOTE] = ACTIONS(1836), + [anon_sym_U_DQUOTE] = ACTIONS(1836), + [anon_sym_u8_DQUOTE] = ACTIONS(1836), + [anon_sym_DQUOTE] = ACTIONS(1836), + [sym_true] = ACTIONS(1834), + [sym_false] = ACTIONS(1834), + [anon_sym_NULL] = ACTIONS(1834), + [anon_sym_nullptr] = ACTIONS(1834), + [sym_comment] = ACTIONS(3), + }, + [STATE(408)] = { + [sym_identifier] = ACTIONS(1838), + [anon_sym_COMMA] = ACTIONS(1840), + [anon_sym_RPAREN] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1840), + [anon_sym_BANG] = ACTIONS(1840), + [anon_sym_TILDE] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_PLUS] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_AMP] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym___extension__] = ACTIONS(1838), + [anon_sym_extern] = ACTIONS(1838), + [anon_sym___attribute__] = ACTIONS(1838), + [anon_sym___attribute] = ACTIONS(1838), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1840), + [anon_sym___declspec] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1840), + [anon_sym_signed] = ACTIONS(1838), + [anon_sym_unsigned] = ACTIONS(1838), + [anon_sym_long] = ACTIONS(1838), + [anon_sym_short] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_static] = ACTIONS(1838), + [anon_sym_EQ] = ACTIONS(1840), + [anon_sym_auto] = ACTIONS(1838), + [anon_sym_register] = ACTIONS(1838), + [anon_sym_inline] = ACTIONS(1838), + [anon_sym___inline] = ACTIONS(1838), + [anon_sym___inline__] = ACTIONS(1838), + [anon_sym___forceinline] = ACTIONS(1838), + [anon_sym_thread_local] = ACTIONS(1838), + [anon_sym___thread] = ACTIONS(1838), + [anon_sym_const] = ACTIONS(1838), + [anon_sym_constexpr] = ACTIONS(1838), + [anon_sym_volatile] = ACTIONS(1838), + [anon_sym_restrict] = ACTIONS(1838), + [anon_sym___restrict__] = ACTIONS(1838), + [anon_sym__Atomic] = ACTIONS(1838), + [anon_sym__Noreturn] = ACTIONS(1838), + [anon_sym_noreturn] = ACTIONS(1838), + [anon_sym__Nonnull] = ACTIONS(1838), + [anon_sym_alignas] = ACTIONS(1838), + [anon_sym__Alignas] = ACTIONS(1838), + [aux_sym_primitive_type_token1] = ACTIONS(1838), + [anon_sym__BitInt] = ACTIONS(1838), + [anon_sym_enum] = ACTIONS(1838), + [anon_sym_COLON] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1838), + [anon_sym_union] = ACTIONS(1838), + [anon_sym_if] = ACTIONS(1838), + [anon_sym_switch] = ACTIONS(1838), + [anon_sym_case] = ACTIONS(1838), + [anon_sym_default] = ACTIONS(1838), + [anon_sym_while] = ACTIONS(1838), + [anon_sym_do] = ACTIONS(1838), + [anon_sym_for] = ACTIONS(1838), + [anon_sym_return] = ACTIONS(1838), + [anon_sym_break] = ACTIONS(1838), + [anon_sym_continue] = ACTIONS(1838), + [anon_sym_goto] = ACTIONS(1838), + [anon_sym___try] = ACTIONS(1838), + [anon_sym___leave] = ACTIONS(1838), + [anon_sym_DASH_DASH] = ACTIONS(1840), + [anon_sym_PLUS_PLUS] = ACTIONS(1840), + [anon_sym_sizeof] = ACTIONS(1838), + [anon_sym___alignof__] = ACTIONS(1838), + [anon_sym___alignof] = ACTIONS(1838), + [anon_sym__alignof] = ACTIONS(1838), + [anon_sym_alignof] = ACTIONS(1838), + [anon_sym__Alignof] = ACTIONS(1838), + [anon_sym_offsetof] = ACTIONS(1838), + [anon_sym_static_assert] = ACTIONS(1838), + [anon_sym__Static_assert] = ACTIONS(1838), + [anon_sym_typeof] = ACTIONS(1838), + [anon_sym_typeof_unqual] = ACTIONS(1838), + [anon_sym__Generic] = ACTIONS(1838), + [anon_sym_asm] = ACTIONS(1838), + [anon_sym___asm__] = ACTIONS(1838), + [anon_sym___asm] = ACTIONS(1838), + [sym_number_literal] = ACTIONS(1840), + [anon_sym_L_SQUOTE] = ACTIONS(1840), + [anon_sym_u_SQUOTE] = ACTIONS(1840), + [anon_sym_U_SQUOTE] = ACTIONS(1840), + [anon_sym_u8_SQUOTE] = ACTIONS(1840), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_L_DQUOTE] = ACTIONS(1840), + [anon_sym_u_DQUOTE] = ACTIONS(1840), + [anon_sym_U_DQUOTE] = ACTIONS(1840), + [anon_sym_u8_DQUOTE] = ACTIONS(1840), + [anon_sym_DQUOTE] = ACTIONS(1840), + [sym_true] = ACTIONS(1838), + [sym_false] = ACTIONS(1838), + [anon_sym_NULL] = ACTIONS(1838), + [anon_sym_nullptr] = ACTIONS(1838), + [sym_comment] = ACTIONS(3), + }, + [STATE(409)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1494), + [anon_sym_GT_GT] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym___attribute] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(410)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1494), + [aux_sym_preproc_if_token2] = ACTIONS(1494), + [aux_sym_preproc_else_token1] = ACTIONS(1494), + [aux_sym_preproc_elif_token1] = ACTIONS(1500), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1494), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1844), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1494), + [anon_sym_GT_GT] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(411)] = { + [sym_else_clause] = STATE(198), + [sym_identifier] = ACTIONS(1212), + [anon_sym_LPAREN2] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_TILDE] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym___extension__] = ACTIONS(1212), + [anon_sym_typedef] = ACTIONS(1212), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym___attribute__] = ACTIONS(1212), + [anon_sym___attribute] = ACTIONS(1212), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1214), + [anon_sym___declspec] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_auto] = ACTIONS(1212), + [anon_sym_register] = ACTIONS(1212), + [anon_sym_inline] = ACTIONS(1212), + [anon_sym___inline] = ACTIONS(1212), + [anon_sym___inline__] = ACTIONS(1212), + [anon_sym___forceinline] = ACTIONS(1212), + [anon_sym_thread_local] = ACTIONS(1212), + [anon_sym___thread] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_constexpr] = ACTIONS(1212), + [anon_sym_volatile] = ACTIONS(1212), + [anon_sym_restrict] = ACTIONS(1212), + [anon_sym___restrict__] = ACTIONS(1212), + [anon_sym__Atomic] = ACTIONS(1212), + [anon_sym__Noreturn] = ACTIONS(1212), + [anon_sym_noreturn] = ACTIONS(1212), + [anon_sym__Nonnull] = ACTIONS(1212), + [anon_sym_alignas] = ACTIONS(1212), + [anon_sym__Alignas] = ACTIONS(1212), + [aux_sym_primitive_type_token1] = ACTIONS(1212), + [anon_sym__BitInt] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1852), + [anon_sym_switch] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_do] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_goto] = ACTIONS(1212), + [anon_sym___try] = ACTIONS(1212), + [anon_sym___leave] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1214), + [anon_sym_PLUS_PLUS] = ACTIONS(1214), + [anon_sym_sizeof] = ACTIONS(1212), + [anon_sym___alignof__] = ACTIONS(1212), + [anon_sym___alignof] = ACTIONS(1212), + [anon_sym__alignof] = ACTIONS(1212), + [anon_sym_alignof] = ACTIONS(1212), + [anon_sym__Alignof] = ACTIONS(1212), + [anon_sym_offsetof] = ACTIONS(1212), + [anon_sym_static_assert] = ACTIONS(1212), + [anon_sym__Static_assert] = ACTIONS(1212), + [anon_sym_typeof] = ACTIONS(1212), + [anon_sym_typeof_unqual] = ACTIONS(1212), + [anon_sym__Generic] = ACTIONS(1212), + [anon_sym_asm] = ACTIONS(1212), + [anon_sym___asm__] = ACTIONS(1212), + [anon_sym___asm] = ACTIONS(1212), + [sym_number_literal] = ACTIONS(1214), + [anon_sym_L_SQUOTE] = ACTIONS(1214), + [anon_sym_u_SQUOTE] = ACTIONS(1214), + [anon_sym_U_SQUOTE] = ACTIONS(1214), + [anon_sym_u8_SQUOTE] = ACTIONS(1214), + [anon_sym_SQUOTE] = ACTIONS(1214), + [anon_sym_L_DQUOTE] = ACTIONS(1214), + [anon_sym_u_DQUOTE] = ACTIONS(1214), + [anon_sym_U_DQUOTE] = ACTIONS(1214), + [anon_sym_u8_DQUOTE] = ACTIONS(1214), + [anon_sym_DQUOTE] = ACTIONS(1214), + [sym_true] = ACTIONS(1212), + [sym_false] = ACTIONS(1212), + [anon_sym_NULL] = ACTIONS(1212), + [anon_sym_nullptr] = ACTIONS(1212), + [sym_comment] = ACTIONS(3), + }, + [STATE(412)] = { + [sym_identifier] = ACTIONS(1854), + [anon_sym_LPAREN2] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1857), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym___extension__] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1861), + [anon_sym___attribute__] = ACTIONS(1861), + [anon_sym___attribute] = ACTIONS(1861), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1863), + [anon_sym___declspec] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_signed] = ACTIONS(1861), + [anon_sym_unsigned] = ACTIONS(1861), + [anon_sym_long] = ACTIONS(1861), + [anon_sym_short] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1861), + [anon_sym_auto] = ACTIONS(1861), + [anon_sym_register] = ACTIONS(1861), + [anon_sym_inline] = ACTIONS(1861), + [anon_sym___inline] = ACTIONS(1861), + [anon_sym___inline__] = ACTIONS(1861), + [anon_sym___forceinline] = ACTIONS(1861), + [anon_sym_thread_local] = ACTIONS(1861), + [anon_sym___thread] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_constexpr] = ACTIONS(1861), + [anon_sym_volatile] = ACTIONS(1861), + [anon_sym_restrict] = ACTIONS(1861), + [anon_sym___restrict__] = ACTIONS(1861), + [anon_sym__Atomic] = ACTIONS(1861), + [anon_sym__Noreturn] = ACTIONS(1861), + [anon_sym_noreturn] = ACTIONS(1861), + [anon_sym__Nonnull] = ACTIONS(1861), + [anon_sym_alignas] = ACTIONS(1861), + [anon_sym__Alignas] = ACTIONS(1861), + [aux_sym_primitive_type_token1] = ACTIONS(1861), + [anon_sym__BitInt] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_goto] = ACTIONS(1859), + [anon_sym___try] = ACTIONS(1859), + [anon_sym___leave] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_sizeof] = ACTIONS(1859), + [anon_sym___alignof__] = ACTIONS(1859), + [anon_sym___alignof] = ACTIONS(1859), + [anon_sym__alignof] = ACTIONS(1859), + [anon_sym_alignof] = ACTIONS(1859), + [anon_sym__Alignof] = ACTIONS(1859), + [anon_sym_offsetof] = ACTIONS(1859), + [anon_sym_static_assert] = ACTIONS(1859), + [anon_sym__Static_assert] = ACTIONS(1859), + [anon_sym_typeof] = ACTIONS(1859), + [anon_sym_typeof_unqual] = ACTIONS(1859), + [anon_sym__Generic] = ACTIONS(1859), + [anon_sym_asm] = ACTIONS(1859), + [anon_sym___asm__] = ACTIONS(1859), + [anon_sym___asm] = ACTIONS(1859), + [sym_number_literal] = ACTIONS(1857), + [anon_sym_L_SQUOTE] = ACTIONS(1857), + [anon_sym_u_SQUOTE] = ACTIONS(1857), + [anon_sym_U_SQUOTE] = ACTIONS(1857), + [anon_sym_u8_SQUOTE] = ACTIONS(1857), + [anon_sym_SQUOTE] = ACTIONS(1857), + [anon_sym_L_DQUOTE] = ACTIONS(1857), + [anon_sym_u_DQUOTE] = ACTIONS(1857), + [anon_sym_U_DQUOTE] = ACTIONS(1857), + [anon_sym_u8_DQUOTE] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym_true] = ACTIONS(1859), + [sym_false] = ACTIONS(1859), + [anon_sym_NULL] = ACTIONS(1859), + [anon_sym_nullptr] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + }, + [STATE(413)] = { + [sym_expression] = STATE(941), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1494), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_LT_LT] = ACTIONS(1494), + [anon_sym_GT_GT] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1494), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(414)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(415)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(416)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(417)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(418)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1906), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(419)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1904), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(420)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1902), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(421)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(422)] = { + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1149), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_based_modifier] = STATE(1944), + [sym_ms_call_modifier] = STATE(1292), + [sym__declarator] = STATE(1469), + [sym__abstract_declarator] = STATE(1572), + [sym_parenthesized_declarator] = STATE(1326), + [sym_abstract_parenthesized_declarator] = STATE(1478), + [sym_attributed_declarator] = STATE(1326), + [sym_pointer_declarator] = STATE(1326), + [sym_abstract_pointer_declarator] = STATE(1478), + [sym_function_declarator] = STATE(1326), + [sym_abstract_function_declarator] = STATE(1478), + [sym_array_declarator] = STATE(1326), + [sym_abstract_array_declarator] = STATE(1478), + [sym_compound_statement] = STATE(2014), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_variadic_parameter] = STATE(1694), + [sym_parameter_list] = STATE(1481), + [sym_parameter_declaration] = STATE(1694), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_LPAREN2] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1920), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(423)] = { + [sym_type_qualifier] = STATE(648), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1098), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(648), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_RBRACK] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(424)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_COLON] = ACTIONS(1895), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(425)] = { + [sym_type_qualifier] = STATE(432), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1103), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_RBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(426)] = { + [sym_string_literal] = STATE(639), + [aux_sym_sized_type_specifier_repeat1] = STATE(809), + [sym_identifier] = ACTIONS(1876), + [anon_sym_COMMA] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_PLUS] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_SLASH] = ACTIONS(1884), + [anon_sym_PERCENT] = ACTIONS(1884), + [anon_sym_PIPE_PIPE] = ACTIONS(1878), + [anon_sym_AMP_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_CARET] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_EQ_EQ] = ACTIONS(1878), + [anon_sym_BANG_EQ] = ACTIONS(1878), + [anon_sym_GT] = ACTIONS(1884), + [anon_sym_GT_EQ] = ACTIONS(1878), + [anon_sym_LT_EQ] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_LT_LT] = ACTIONS(1884), + [anon_sym_GT_GT] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym___extension__] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym___attribute__] = ACTIONS(1876), + [anon_sym___attribute] = ACTIONS(1876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1889), + [anon_sym___declspec] = ACTIONS(1876), + [anon_sym___based] = ACTIONS(1876), + [anon_sym___cdecl] = ACTIONS(1876), + [anon_sym___clrcall] = ACTIONS(1876), + [anon_sym___stdcall] = ACTIONS(1876), + [anon_sym___fastcall] = ACTIONS(1876), + [anon_sym___thiscall] = ACTIONS(1876), + [anon_sym___vectorcall] = ACTIONS(1876), + [anon_sym_signed] = ACTIONS(1891), + [anon_sym_unsigned] = ACTIONS(1891), + [anon_sym_long] = ACTIONS(1891), + [anon_sym_short] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_EQ] = ACTIONS(1893), + [anon_sym_auto] = ACTIONS(1876), + [anon_sym_register] = ACTIONS(1876), + [anon_sym_inline] = ACTIONS(1876), + [anon_sym___inline] = ACTIONS(1876), + [anon_sym___inline__] = ACTIONS(1876), + [anon_sym___forceinline] = ACTIONS(1876), + [anon_sym_thread_local] = ACTIONS(1876), + [anon_sym___thread] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_constexpr] = ACTIONS(1876), + [anon_sym_volatile] = ACTIONS(1876), + [anon_sym_restrict] = ACTIONS(1876), + [anon_sym___restrict__] = ACTIONS(1876), + [anon_sym__Atomic] = ACTIONS(1876), + [anon_sym__Noreturn] = ACTIONS(1876), + [anon_sym_noreturn] = ACTIONS(1876), + [anon_sym__Nonnull] = ACTIONS(1876), + [anon_sym_alignas] = ACTIONS(1876), + [anon_sym__Alignas] = ACTIONS(1876), + [anon_sym_QMARK] = ACTIONS(1878), + [anon_sym_STAR_EQ] = ACTIONS(1897), + [anon_sym_SLASH_EQ] = ACTIONS(1897), + [anon_sym_PERCENT_EQ] = ACTIONS(1897), + [anon_sym_PLUS_EQ] = ACTIONS(1897), + [anon_sym_DASH_EQ] = ACTIONS(1897), + [anon_sym_LT_LT_EQ] = ACTIONS(1897), + [anon_sym_GT_GT_EQ] = ACTIONS(1897), + [anon_sym_AMP_EQ] = ACTIONS(1897), + [anon_sym_CARET_EQ] = ACTIONS(1897), + [anon_sym_PIPE_EQ] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1878), + [anon_sym_PLUS_PLUS] = ACTIONS(1878), + [anon_sym_DOT] = ACTIONS(1878), + [anon_sym_DASH_GT] = ACTIONS(1878), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [STATE(427)] = { + [sym_type_qualifier] = STATE(648), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1127), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(648), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1951), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_RBRACK] = ACTIONS(1953), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(428)] = { + [sym_type_qualifier] = STATE(648), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1119), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(648), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(429)] = { + [sym_type_qualifier] = STATE(433), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1102), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1959), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1961), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(430)] = { + [sym_type_qualifier] = STATE(427), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1124), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(427), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1967), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(431)] = { - [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(1966), - [sym_preproc_elif_in_field_declaration_list] = STATE(1966), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1966), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(434), - [sym_field_declaration] = STATE(434), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(434), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1972), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_type_qualifier] = STATE(428), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1129), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(428), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(432)] = { - [sym_expression] = STATE(1015), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_initializer_list] = STATE(1643), - [sym_initializer_pair] = STATE(1643), - [sym_subscript_designator] = STATE(1445), - [sym_subscript_range_designator] = STATE(1445), - [sym_field_designator] = STATE(1445), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_initializer_pair_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(1974), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_LBRACK] = ACTIONS(1980), - [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(1982), - [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_type_qualifier] = STATE(648), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1113), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(648), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1977), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_RBRACK] = ACTIONS(1979), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(433)] = { - [sym_preproc_def] = STATE(430), - [sym_preproc_function_def] = STATE(430), - [sym_preproc_call] = STATE(430), - [sym_preproc_if_in_field_declaration_list] = STATE(430), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), - [sym_preproc_else_in_field_declaration_list] = STATE(1822), - [sym_preproc_elif_in_field_declaration_list] = STATE(1822), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1822), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(430), - [sym_field_declaration] = STATE(430), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_type_qualifier] = STATE(648), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1114), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(648), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1981), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(434)] = { - [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(1788), - [sym_preproc_elif_in_field_declaration_list] = STATE(1788), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1788), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1986), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_type_qualifier] = STATE(423), + [sym_alignas_qualifier] = STATE(682), + [sym_expression] = STATE(1120), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_array_declarator_repeat1] = STATE(423), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1985), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(1989), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_constexpr] = ACTIONS(1936), + [anon_sym_volatile] = ACTIONS(1936), + [anon_sym_restrict] = ACTIONS(1936), + [anon_sym___restrict__] = ACTIONS(1936), + [anon_sym__Atomic] = ACTIONS(1936), + [anon_sym__Noreturn] = ACTIONS(1936), + [anon_sym_noreturn] = ACTIONS(1936), + [anon_sym__Nonnull] = ACTIONS(1936), + [anon_sym_alignas] = ACTIONS(1938), + [anon_sym__Alignas] = ACTIONS(1938), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(435)] = { - [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(1927), - [sym_preproc_elif_in_field_declaration_list] = STATE(1927), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1927), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_expression] = STATE(1090), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1991), + [anon_sym_LPAREN2] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1997), + [anon_sym_TILDE] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_PLUS] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_RBRACK] = ACTIONS(1818), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_constexpr] = ACTIONS(1816), + [anon_sym_volatile] = ACTIONS(1816), + [anon_sym_restrict] = ACTIONS(1816), + [anon_sym___restrict__] = ACTIONS(1816), + [anon_sym__Atomic] = ACTIONS(1816), + [anon_sym__Noreturn] = ACTIONS(1816), + [anon_sym_noreturn] = ACTIONS(1816), + [anon_sym__Nonnull] = ACTIONS(1816), + [anon_sym_alignas] = ACTIONS(1816), + [anon_sym__Alignas] = ACTIONS(1816), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(2012), + [anon_sym___alignof__] = ACTIONS(2015), + [anon_sym___alignof] = ACTIONS(2015), + [anon_sym__alignof] = ACTIONS(2015), + [anon_sym_alignof] = ACTIONS(2015), + [anon_sym__Alignof] = ACTIONS(2015), + [anon_sym_offsetof] = ACTIONS(2018), + [anon_sym_static_assert] = ACTIONS(2021), + [anon_sym__Static_assert] = ACTIONS(2021), + [anon_sym_typeof] = ACTIONS(2024), + [anon_sym_typeof_unqual] = ACTIONS(2024), + [anon_sym__Generic] = ACTIONS(2027), + [anon_sym_asm] = ACTIONS(2030), + [anon_sym___asm__] = ACTIONS(2030), + [anon_sym___asm] = ACTIONS(2030), + [sym_number_literal] = ACTIONS(2033), + [anon_sym_L_SQUOTE] = ACTIONS(2036), + [anon_sym_u_SQUOTE] = ACTIONS(2036), + [anon_sym_U_SQUOTE] = ACTIONS(2036), + [anon_sym_u8_SQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_L_DQUOTE] = ACTIONS(2039), + [anon_sym_u_DQUOTE] = ACTIONS(2039), + [anon_sym_U_DQUOTE] = ACTIONS(2039), + [anon_sym_u8_DQUOTE] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2039), + [sym_true] = ACTIONS(2042), + [sym_false] = ACTIONS(2042), + [anon_sym_NULL] = ACTIONS(2045), + [anon_sym_nullptr] = ACTIONS(2045), [sym_comment] = ACTIONS(3), }, [STATE(436)] = { - [sym_preproc_def] = STATE(438), - [sym_preproc_function_def] = STATE(438), - [sym_preproc_call] = STATE(438), - [sym_preproc_if_in_field_declaration_list] = STATE(438), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(438), - [sym_preproc_else_in_field_declaration_list] = STATE(1982), - [sym_preproc_elif_in_field_declaration_list] = STATE(1982), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1982), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(438), - [sym_field_declaration] = STATE(438), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(438), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1990), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_expression] = STATE(1043), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1657), + [sym_initializer_pair] = STATE(1657), + [sym_subscript_designator] = STATE(1497), + [sym_subscript_range_designator] = STATE(1497), + [sym_field_designator] = STATE(1497), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_initializer_pair_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(2048), + [anon_sym_COMMA] = ACTIONS(2050), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(437)] = { - [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(2007), - [sym_preproc_elif_in_field_declaration_list] = STATE(2007), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2007), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(439), - [sym_field_declaration] = STATE(439), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(439), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_expression] = STATE(1079), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1743), + [sym_initializer_pair] = STATE(1743), + [sym_subscript_designator] = STATE(1497), + [sym_subscript_range_designator] = STATE(1497), + [sym_field_designator] = STATE(1497), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_initializer_pair_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(438)] = { - [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(2010), - [sym_preproc_elif_in_field_declaration_list] = STATE(2010), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2010), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1994), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_expression] = STATE(1079), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1743), + [sym_initializer_pair] = STATE(1743), + [sym_subscript_designator] = STATE(1497), + [sym_subscript_range_designator] = STATE(1497), + [sym_field_designator] = STATE(1497), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_initializer_pair_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(439)] = { - [sym_preproc_def] = STATE(444), - [sym_preproc_function_def] = STATE(444), - [sym_preproc_call] = STATE(444), - [sym_preproc_if_in_field_declaration_list] = STATE(444), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), - [sym_preproc_else_in_field_declaration_list] = STATE(1863), - [sym_preproc_elif_in_field_declaration_list] = STATE(1863), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1863), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1149), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(1424), + [sym__abstract_declarator] = STATE(1572), + [sym_abstract_parenthesized_declarator] = STATE(1478), + [sym_abstract_pointer_declarator] = STATE(1478), + [sym_abstract_function_declarator] = STATE(1478), + [sym_abstract_array_declarator] = STATE(1478), + [sym_compound_statement] = STATE(2014), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_variadic_parameter] = STATE(1694), + [sym_parameter_list] = STATE(1481), + [sym_parameter_declaration] = STATE(1694), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1914), + [anon_sym_LPAREN2] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(440)] = { - [sym_preproc_def] = STATE(424), - [sym_preproc_function_def] = STATE(424), - [sym_preproc_call] = STATE(424), - [sym_preproc_if_in_field_declaration_list] = STATE(424), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(424), - [sym_preproc_else_in_field_declaration_list] = STATE(1872), - [sym_preproc_elif_in_field_declaration_list] = STATE(1872), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1872), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(424), - [sym_field_declaration] = STATE(424), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(424), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(1944), - [aux_sym_preproc_if_token1] = ACTIONS(1946), - [aux_sym_preproc_if_token2] = ACTIONS(1998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1950), - [aux_sym_preproc_else_token1] = ACTIONS(1952), - [aux_sym_preproc_elif_token1] = ACTIONS(1954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1956), - [sym_preproc_directive] = ACTIONS(1958), - [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_expression] = STATE(1079), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1743), + [sym_initializer_pair] = STATE(1743), + [sym_subscript_designator] = STATE(1497), + [sym_subscript_range_designator] = STATE(1497), + [sym_field_designator] = STATE(1497), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [aux_sym_initializer_pair_repeat1] = STATE(1497), + [sym_identifier] = ACTIONS(2048), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(2056), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), [sym_comment] = ACTIONS(3), }, [STATE(441)] = { - [sym_expression] = STATE(1030), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_initializer_list] = STATE(1683), - [sym_initializer_pair] = STATE(1683), - [sym_subscript_designator] = STATE(1445), - [sym_subscript_range_designator] = STATE(1445), - [sym_field_designator] = STATE(1445), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_initializer_pair_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(1980), - [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(1982), - [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_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_preproc_else_in_field_declaration_list] = STATE(1908), + [sym_preproc_elif_in_field_declaration_list] = STATE(1908), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1908), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(442)] = { - [sym_expression] = STATE(1030), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_initializer_list] = STATE(1683), - [sym_initializer_pair] = STATE(1683), - [sym_subscript_designator] = STATE(1445), - [sym_subscript_range_designator] = STATE(1445), - [sym_field_designator] = STATE(1445), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_initializer_pair_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(2002), - [anon_sym_LBRACK] = ACTIONS(1980), - [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(1982), - [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_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_preproc_else_in_field_declaration_list] = STATE(1885), + [sym_preproc_elif_in_field_declaration_list] = STATE(1885), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1885), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2084), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(443)] = { - [sym_expression] = STATE(1030), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_initializer_list] = STATE(1683), - [sym_initializer_pair] = STATE(1683), - [sym_subscript_designator] = STATE(1445), - [sym_subscript_range_designator] = STATE(1445), - [sym_field_designator] = STATE(1445), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [aux_sym_initializer_pair_repeat1] = STATE(1445), - [sym_identifier] = ACTIONS(1974), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1980), - [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(1982), - [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_preproc_def] = STATE(447), + [sym_preproc_function_def] = STATE(447), + [sym_preproc_call] = STATE(447), + [sym_preproc_if_in_field_declaration_list] = STATE(447), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(447), + [sym_preproc_else_in_field_declaration_list] = STATE(2009), + [sym_preproc_elif_in_field_declaration_list] = STATE(2009), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2009), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(447), + [sym_field_declaration] = STATE(447), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(447), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2086), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(444)] = { - [sym_preproc_def] = STATE(444), - [sym_preproc_function_def] = STATE(444), - [sym_preproc_call] = STATE(444), - [sym_preproc_if_in_field_declaration_list] = STATE(444), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(444), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1279), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(444), - [sym_field_declaration] = STATE(444), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2007), - [aux_sym_preproc_if_token1] = ACTIONS(2010), - [aux_sym_preproc_if_token2] = ACTIONS(2013), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2015), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2015), - [aux_sym_preproc_else_token1] = ACTIONS(2013), - [aux_sym_preproc_elif_token1] = ACTIONS(2013), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2013), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2013), - [sym_preproc_directive] = ACTIONS(2018), - [anon_sym___extension__] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym___attribute] = ACTIONS(2027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2033), - [anon_sym_signed] = ACTIONS(2036), - [anon_sym_unsigned] = ACTIONS(2036), - [anon_sym_long] = ACTIONS(2036), - [anon_sym_short] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_auto] = ACTIONS(2024), - [anon_sym_register] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym___inline] = ACTIONS(2024), - [anon_sym___inline__] = ACTIONS(2024), - [anon_sym___forceinline] = ACTIONS(2024), - [anon_sym_thread_local] = ACTIONS(2024), - [anon_sym___thread] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_constexpr] = ACTIONS(2021), - [anon_sym_volatile] = ACTIONS(2021), - [anon_sym_restrict] = ACTIONS(2021), - [anon_sym___restrict__] = ACTIONS(2021), - [anon_sym__Atomic] = ACTIONS(2021), - [anon_sym__Noreturn] = ACTIONS(2021), - [anon_sym_noreturn] = ACTIONS(2021), - [anon_sym__Nonnull] = ACTIONS(2021), - [anon_sym_alignas] = ACTIONS(2039), - [anon_sym__Alignas] = ACTIONS(2039), - [sym_primitive_type] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [STATE(445)] = { - [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__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1275), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2054), - [aux_sym_preproc_if_token1] = ACTIONS(2057), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2060), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2060), - [sym_preproc_directive] = ACTIONS(2063), - [anon_sym___extension__] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym___attribute] = ACTIONS(2027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2066), - [anon_sym_signed] = ACTIONS(2036), - [anon_sym_unsigned] = ACTIONS(2036), - [anon_sym_long] = ACTIONS(2036), - [anon_sym_short] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_auto] = ACTIONS(2024), - [anon_sym_register] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym___inline] = ACTIONS(2024), - [anon_sym___inline__] = ACTIONS(2024), - [anon_sym___forceinline] = ACTIONS(2024), - [anon_sym_thread_local] = ACTIONS(2024), - [anon_sym___thread] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_constexpr] = ACTIONS(2021), - [anon_sym_volatile] = ACTIONS(2021), - [anon_sym_restrict] = ACTIONS(2021), - [anon_sym___restrict__] = ACTIONS(2021), - [anon_sym__Atomic] = ACTIONS(2021), - [anon_sym__Noreturn] = ACTIONS(2021), - [anon_sym_noreturn] = ACTIONS(2021), - [anon_sym__Nonnull] = ACTIONS(2021), - [anon_sym_alignas] = ACTIONS(2039), - [anon_sym__Alignas] = ACTIONS(2039), - [sym_primitive_type] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2051), - [sym_comment] = ACTIONS(3), - }, - [STATE(446)] = { - [sym_preproc_def] = STATE(449), - [sym_preproc_function_def] = STATE(449), - [sym_preproc_call] = STATE(449), - [sym_preproc_if_in_field_declaration_list] = STATE(449), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(449), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1278), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(449), - [sym_field_declaration] = STATE(449), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), + [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_preproc_else_in_field_declaration_list] = STATE(2012), + [sym_preproc_elif_in_field_declaration_list] = STATE(2012), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2012), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), [aux_sym_preproc_def_token1] = ACTIONS(2068), [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2072), + [aux_sym_preproc_if_token2] = ACTIONS(2088), [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), - [sym_preproc_directive] = ACTIONS(2076), - [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), - }, - [STATE(447)] = { - [sym_preproc_def] = STATE(450), - [sym_preproc_function_def] = STATE(450), - [sym_preproc_call] = STATE(450), - [sym_preproc_if_in_field_declaration_list] = STATE(450), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(450), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1275), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(450), - [sym_field_declaration] = STATE(450), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(450), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token1] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), - [sym_preproc_directive] = ACTIONS(2084), - [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(2086), - [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), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, - [STATE(448)] = { + [STATE(445)] = { [sym_preproc_def] = STATE(446), [sym_preproc_function_def] = STATE(446), [sym_preproc_call] = STATE(446), [sym_preproc_if_in_field_declaration_list] = STATE(446), [sym_preproc_ifdef_in_field_declaration_list] = STATE(446), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1278), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [sym_preproc_else_in_field_declaration_list] = STATE(2034), + [sym_preproc_elif_in_field_declaration_list] = STATE(2034), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2034), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym__field_declaration_list_item] = STATE(446), [sym_field_declaration] = STATE(446), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(446), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), [aux_sym_preproc_def_token1] = ACTIONS(2068), [aux_sym_preproc_if_token1] = ACTIONS(2070), - [aux_sym_preproc_if_token2] = ACTIONS(2088), + [aux_sym_preproc_if_token2] = ACTIONS(2090), [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), - [sym_preproc_directive] = ACTIONS(2076), - [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), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, - [STATE(449)] = { + [STATE(446)] = { + [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_preproc_else_in_field_declaration_list] = STATE(1848), + [sym_preproc_elif_in_field_declaration_list] = STATE(1848), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1848), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(447)] = { + [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_preproc_else_in_field_declaration_list] = STATE(1871), + [sym_preproc_elif_in_field_declaration_list] = STATE(1871), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1871), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2094), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(448)] = { [sym_preproc_def] = STATE(449), [sym_preproc_function_def] = STATE(449), [sym_preproc_call] = STATE(449), [sym_preproc_if_in_field_declaration_list] = STATE(449), [sym_preproc_ifdef_in_field_declaration_list] = STATE(449), - [sym__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1278), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), + [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(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), [sym__field_declaration_list_item] = STATE(449), [sym_field_declaration] = STATE(449), - [sym_macro_type_specifier] = STATE(770), + [sym_macro_type_specifier] = STATE(778), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(449), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(2004), - [aux_sym_preproc_def_token1] = ACTIONS(2090), - [aux_sym_preproc_if_token1] = ACTIONS(2093), - [aux_sym_preproc_if_token2] = ACTIONS(2013), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2096), - [sym_preproc_directive] = ACTIONS(2099), - [anon_sym___extension__] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym___attribute__] = ACTIONS(2027), - [anon_sym___attribute] = ACTIONS(2027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2030), - [anon_sym___declspec] = ACTIONS(2033), - [anon_sym_signed] = ACTIONS(2036), - [anon_sym_unsigned] = ACTIONS(2036), - [anon_sym_long] = ACTIONS(2036), - [anon_sym_short] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_auto] = ACTIONS(2024), - [anon_sym_register] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym___inline] = ACTIONS(2024), - [anon_sym___inline__] = ACTIONS(2024), - [anon_sym___forceinline] = ACTIONS(2024), - [anon_sym_thread_local] = ACTIONS(2024), - [anon_sym___thread] = ACTIONS(2024), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_constexpr] = ACTIONS(2021), - [anon_sym_volatile] = ACTIONS(2021), - [anon_sym_restrict] = ACTIONS(2021), - [anon_sym___restrict__] = ACTIONS(2021), - [anon_sym__Atomic] = ACTIONS(2021), - [anon_sym__Noreturn] = ACTIONS(2021), - [anon_sym_noreturn] = ACTIONS(2021), - [anon_sym__Nonnull] = ACTIONS(2021), - [anon_sym_alignas] = ACTIONS(2039), - [anon_sym__Alignas] = ACTIONS(2039), - [sym_primitive_type] = ACTIONS(2042), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2048), - [anon_sym_union] = ACTIONS(2051), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(449)] = { + [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_preproc_else_in_field_declaration_list] = STATE(1852), + [sym_preproc_elif_in_field_declaration_list] = STATE(1852), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1852), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2098), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(450)] = { - [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__declaration_modifiers] = STATE(695), - [sym__declaration_specifiers] = STATE(1275), - [sym_attribute_specifier] = STATE(695), - [sym_attribute_declaration] = STATE(695), - [sym_ms_declspec_modifier] = STATE(695), - [sym_storage_class_specifier] = STATE(695), - [sym_type_qualifier] = STATE(695), - [sym_alignas_qualifier] = STATE(711), - [sym_type_specifier] = STATE(720), - [sym_sized_type_specifier] = STATE(770), - [sym_enum_specifier] = STATE(770), - [sym_struct_specifier] = STATE(770), - [sym_union_specifier] = STATE(770), - [sym__field_declaration_list_item] = STATE(445), - [sym_field_declaration] = STATE(445), - [sym_macro_type_specifier] = STATE(770), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(445), - [aux_sym__declaration_specifiers_repeat1] = STATE(695), - [aux_sym_sized_type_specifier_repeat1] = STATE(704), - [sym_identifier] = ACTIONS(1938), - [aux_sym_preproc_def_token1] = ACTIONS(2078), - [aux_sym_preproc_if_token1] = ACTIONS(2080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2082), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2082), - [sym_preproc_directive] = ACTIONS(2084), - [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(2102), - [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_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_preproc_else_in_field_declaration_list] = STATE(1910), + [sym_preproc_elif_in_field_declaration_list] = STATE(1910), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1910), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(454), + [sym_field_declaration] = STATE(454), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(454), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2100), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(451)] = { - [sym_compound_statement] = STATE(1667), - [sym_expression] = STATE(1018), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [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), + [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(1981), + [sym_preproc_elif_in_field_declaration_list] = STATE(1981), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1981), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(452), + [sym_field_declaration] = STATE(452), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(452), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(452)] = { - [sym_compound_statement] = STATE(1772), - [sym_expression] = STATE(1033), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1772), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [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), + [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_preproc_else_in_field_declaration_list] = STATE(2043), + [sym_preproc_elif_in_field_declaration_list] = STATE(2043), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2043), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2104), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(453)] = { - [sym_compound_statement] = STATE(1901), - [sym_expression] = STATE(1031), - [sym__string] = STATE(684), - [sym_comma_expression] = STATE(1901), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [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), + [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(1850), + [sym_preproc_elif_in_field_declaration_list] = STATE(1850), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1850), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(444), + [sym_field_declaration] = STATE(444), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(444), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [STATE(454)] = { - [sym_compound_statement] = STATE(1621), - [sym_expression] = STATE(1017), - [sym__string] = STATE(684), - [sym_conditional_expression] = STATE(684), - [sym_assignment_expression] = STATE(684), - [sym_pointer_expression] = STATE(837), - [sym_unary_expression] = STATE(684), - [sym_binary_expression] = STATE(684), - [sym_update_expression] = STATE(684), - [sym_cast_expression] = STATE(684), - [sym_sizeof_expression] = STATE(684), - [sym_alignof_expression] = STATE(684), - [sym_offsetof_expression] = STATE(684), - [sym_generic_expression] = STATE(684), - [sym_subscript_expression] = STATE(837), - [sym_call_expression] = STATE(837), - [sym_gnu_asm_expression] = STATE(684), - [sym_extension_expression] = STATE(684), - [sym_field_expression] = STATE(837), - [sym_compound_literal_expression] = STATE(684), - [sym_parenthesized_expression] = STATE(837), - [sym_char_literal] = STATE(684), - [sym_concatenated_string] = STATE(684), - [sym_string_literal] = STATE(663), - [sym_null] = STATE(684), - [sym_identifier] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(2106), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1404), - [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), + [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_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(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2108), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 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(161), 1, - sym_number_literal, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2108), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1048), 1, - sym_expression, - STATE(1814), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1390), 1, - anon_sym_LBRACE, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(678), 1, - sym_initializer_list, - STATE(699), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2110), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1046), 1, - sym_expression, - STATE(1957), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2112), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1052), 1, - sym_expression, - STATE(1807), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1390), 1, - anon_sym_LBRACE, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1032), 1, - sym_expression, - STATE(1754), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2114), 1, - anon_sym_RPAREN, - STATE(663), 1, - sym_string_literal, - STATE(1037), 1, - sym_expression, - STATE(1954), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2116), 1, - anon_sym_RPAREN, - STATE(663), 1, - sym_string_literal, - STATE(1038), 1, - sym_expression, - STATE(1971), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1390), 1, - anon_sym_LBRACE, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(678), 1, - sym_initializer_list, - STATE(699), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1390), 1, - anon_sym_LBRACE, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1041), 1, - sym_expression, - STATE(1686), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2124), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1029), 1, - sym_expression, - STATE(1817), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2126), 1, - anon_sym_RPAREN, - STATE(663), 1, - sym_string_literal, - STATE(1049), 1, - sym_expression, - STATE(1771), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1390), 1, - anon_sym_LBRACE, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(678), 1, - sym_initializer_list, - STATE(699), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2132), 1, - anon_sym_RPAREN, - STATE(663), 1, - sym_string_literal, - STATE(1040), 1, - sym_expression, - STATE(1973), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2134), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1057), 1, - sym_expression, - STATE(1849), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(663), 1, - sym_string_literal, - STATE(1027), 1, - sym_expression, - STATE(1981), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2138), 1, - anon_sym_COLON, - STATE(663), 1, - sym_string_literal, - STATE(1045), 1, - sym_expression, - STATE(1999), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2140), 1, - anon_sym_COLON, - STATE(663), 1, - sym_string_literal, - STATE(1047), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(161), 1, - sym_number_literal, - ACTIONS(1390), 1, - anon_sym_LBRACE, - ACTIONS(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(678), 1, - sym_initializer_list, - STATE(889), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(161), 1, - sym_number_literal, - ACTIONS(1390), 1, - anon_sym_LBRACE, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(678), 1, - sym_initializer_list, - STATE(699), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2148), 1, - anon_sym_COLON, - STATE(663), 1, - sym_string_literal, - STATE(1019), 1, - sym_expression, - STATE(2014), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2150), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1070), 1, - sym_expression, - STATE(1851), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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, - sym_number_literal, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1025), 1, - sym_expression, - STATE(1758), 1, - sym_compound_statement, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1390), 1, - anon_sym_LBRACE, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1043), 1, - sym_expression, - STATE(1712), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2152), 1, - anon_sym_COLON, - STATE(663), 1, - sym_string_literal, - STATE(1065), 1, - sym_expression, - STATE(1989), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2154), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_string_literal, - STATE(1034), 1, - sym_expression, - STATE(1770), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2156), 1, - anon_sym_COLON, - STATE(663), 1, - sym_string_literal, - STATE(1069), 1, - sym_expression, - STATE(1809), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_RPAREN, - STATE(663), 1, - sym_string_literal, - STATE(1022), 1, - sym_expression, - STATE(1843), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2160), 1, - anon_sym_COLON, - STATE(663), 1, - sym_string_literal, - STATE(1067), 1, - sym_expression, - STATE(1831), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1390), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(678), 1, - sym_initializer_list, - STATE(889), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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] = 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(1938), 1, - sym_identifier, - ACTIONS(2166), 1, - anon_sym_LBRACE, - STATE(687), 1, - sym_ms_call_modifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1143), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(122), 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(770), 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(695), 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, - [3387] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2168), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [3497] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2170), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [3607] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2172), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [3717] = 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(1938), 1, - sym_identifier, - ACTIONS(2174), 1, - anon_sym_LBRACE, - STATE(685), 1, - sym_ms_call_modifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1144), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(260), 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(770), 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(695), 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, - [3827] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2176), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [3937] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2178), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [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(1938), 1, - sym_identifier, - ACTIONS(2180), 1, - anon_sym_LBRACE, - STATE(689), 1, - sym_ms_call_modifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1145), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(287), 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(770), 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(695), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2182), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [4267] = 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(1938), 1, - sym_identifier, - ACTIONS(2184), 1, - anon_sym_LBRACE, - STATE(676), 1, - sym_ms_call_modifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1154), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(315), 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(770), 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(695), 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, - [4377] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2186), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [4487] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2188), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [4597] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2190), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [4707] = 23, - 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1012), 1, - sym_expression, - STATE(1656), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [4817] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - anon_sym_RBRACK, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [4927] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(831), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5034] = 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, - sym_number_literal, - ACTIONS(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - ACTIONS(2194), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(702), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5141] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(829), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5248] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(973), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5355] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1078), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5462] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(983), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5569] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(834), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(985), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(978), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5890] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(974), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [5997] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(962), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6104] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1053), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6211] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1023), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6318] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(833), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6425] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(888), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(805), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6639] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(806), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6746] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(807), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6853] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(808), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [6960] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(809), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7067] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(810), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7174] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(811), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7281] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(812), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7388] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1082), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7495] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1092), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(819), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7709] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(813), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7816] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(961), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [7923] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_const, - ACTIONS(1766), 1, - anon_sym_LPAREN2, - ACTIONS(1772), 1, - anon_sym_STAR, - ACTIONS(1782), 1, - anon_sym_EQ, - STATE(621), 1, - sym_string_literal, - STATE(762), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1775), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2196), 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(1786), 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(1770), 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(1778), 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(1764), 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, - [8014] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1090), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8121] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(814), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8228] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1039), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8335] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1095), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8442] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(691), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8549] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(975), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8656] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(701), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8763] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2198), 1, - anon_sym_LPAREN2, - STATE(702), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8870] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(980), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [8977] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(822), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9084] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 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(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9191] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(697), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9298] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(701), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9405] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(691), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9512] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1013), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9619] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(959), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9726] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(976), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9833] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1016), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [9940] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1091), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10047] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1094), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10154] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(697), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10261] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(977), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10368] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(691), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10475] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(818), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10582] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(701), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10689] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2200), 1, - anon_sym_LPAREN2, - STATE(702), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10796] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(692), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [10903] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(692), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11010] = 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(1378), 1, - sym_identifier, - ACTIONS(1398), 1, - anon_sym___extension__, - ACTIONS(1400), 1, - anon_sym_sizeof, - ACTIONS(2118), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(817), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1394), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1396), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2122), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11117] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(701), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11224] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(702), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11331] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(982), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11438] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(830), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11545] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(697), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11652] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1073), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11759] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(825), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11866] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1076), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [11973] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(826), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12080] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1051), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12187] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1054), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12294] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(888), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12401] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1058), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12508] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1059), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12615] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1060), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12722] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1061), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12829] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1062), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [12936] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1063), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13043] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1064), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13150] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1066), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13257] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(979), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13364] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1020), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13471] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1024), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(892), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(893), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13792] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(909), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [13899] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(894), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14006] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(895), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14113] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(896), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14220] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(897), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14327] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(898), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14434] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(899), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14541] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(900), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14648] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(901), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14755] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(905), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14862] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(907), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [14969] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2204), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(885), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15076] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(902), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2164), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15183] = 22, + [STATE(455)] = { + [sym_preproc_def] = STATE(442), + [sym_preproc_function_def] = STATE(442), + [sym_preproc_call] = STATE(442), + [sym_preproc_if_in_field_declaration_list] = STATE(442), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(442), + [sym_preproc_else_in_field_declaration_list] = STATE(2062), + [sym_preproc_elif_in_field_declaration_list] = STATE(2062), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2062), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(442), + [sym_field_declaration] = STATE(442), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(442), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(456)] = { + [sym_preproc_def] = STATE(441), + [sym_preproc_function_def] = STATE(441), + [sym_preproc_call] = STATE(441), + [sym_preproc_if_in_field_declaration_list] = STATE(441), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(441), + [sym_preproc_else_in_field_declaration_list] = STATE(1872), + [sym_preproc_elif_in_field_declaration_list] = STATE(1872), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(1872), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(441), + [sym_field_declaration] = STATE(441), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(441), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2068), + [aux_sym_preproc_if_token1] = ACTIONS(2070), + [aux_sym_preproc_if_token2] = ACTIONS(2112), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2074), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2074), + [aux_sym_preproc_else_token1] = ACTIONS(2076), + [aux_sym_preproc_elif_token1] = ACTIONS(2078), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2080), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2080), + [sym_preproc_directive] = ACTIONS(2082), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(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(688), + [sym__declaration_specifiers] = STATE(1308), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(457), + [sym_field_declaration] = STATE(457), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(457), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2114), + [aux_sym_preproc_def_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token1] = ACTIONS(2120), + [aux_sym_preproc_if_token2] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2125), + [aux_sym_preproc_else_token1] = ACTIONS(2123), + [aux_sym_preproc_elif_token1] = ACTIONS(2123), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2123), + [sym_preproc_directive] = ACTIONS(2128), + [anon_sym___extension__] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2137), + [anon_sym___attribute] = ACTIONS(2137), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2140), + [anon_sym___declspec] = ACTIONS(2143), + [anon_sym_signed] = ACTIONS(2146), + [anon_sym_unsigned] = ACTIONS(2146), + [anon_sym_long] = ACTIONS(2146), + [anon_sym_short] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_auto] = ACTIONS(2149), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_constexpr] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2131), + [anon_sym_restrict] = ACTIONS(2131), + [anon_sym___restrict__] = ACTIONS(2131), + [anon_sym__Atomic] = ACTIONS(2131), + [anon_sym__Noreturn] = ACTIONS(2131), + [anon_sym_noreturn] = ACTIONS(2131), + [anon_sym__Nonnull] = ACTIONS(2131), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [aux_sym_primitive_type_token1] = ACTIONS(2155), + [anon_sym__BitInt] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + }, + [STATE(458)] = { + [sym_compound_statement] = STATE(1979), + [sym_expression] = STATE(1056), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1979), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(459)] = { + [sym_compound_statement] = STATE(1689), + [sym_expression] = STATE(1047), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2170), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(460)] = { + [sym_compound_statement] = STATE(2070), + [sym_expression] = STATE(1050), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2070), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(461)] = { + [sym_compound_statement] = STATE(1633), + [sym_expression] = STATE(1046), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2172), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(462)] = { + [sym_expression] = STATE(1081), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1763), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(463)] = { + [sym_expression] = STATE(1087), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1911), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(464)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(465)] = { + [sym_expression] = STATE(1089), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1931), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(466)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(467)] = { + [sym_expression] = STATE(1072), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2045), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(468)] = { + [sym_expression] = STATE(1073), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2061), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(469)] = { + [sym_expression] = STATE(1077), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1995), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(470)] = { + [sym_expression] = STATE(1097), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1739), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(471)] = { + [sym_expression] = STATE(1075), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1947), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2194), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(472)] = { + [sym_expression] = STATE(1071), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1978), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(473)] = { + [sym_expression] = STATE(1055), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2060), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(474)] = { + [sym_expression] = STATE(1091), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1929), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(475)] = { + [sym_expression] = STATE(941), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(476)] = { + [sym_expression] = STATE(1078), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1833), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(477)] = { + [sym_expression] = STATE(1092), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1957), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(478)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(479)] = { + [sym_expression] = STATE(1052), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2069), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(480)] = { + [sym_expression] = STATE(1053), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1839), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(481)] = { + [sym_compound_statement] = STATE(1806), + [sym_expression] = STATE(1080), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(47), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(482)] = { + [sym_expression] = STATE(1054), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2000), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(483)] = { + [sym_expression] = STATE(1085), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(1750), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(484)] = { + [sym_expression] = STATE(941), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(485)] = { + [sym_expression] = STATE(1096), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2049), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(486)] = { + [sym_expression] = STATE(1058), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2041), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(487)] = { + [sym_expression] = STATE(1084), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1921), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(488)] = { + [sym_expression] = STATE(722), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_initializer_list] = STATE(703), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(489)] = { + [sym_expression] = STATE(1086), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(2013), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(2228), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(490)] = { + [sym_expression] = STATE(1082), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1887), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_COLON] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(491)] = { + [sym_preproc_def] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_preproc_call] = STATE(491), + [sym_preproc_if_in_field_declaration_list] = STATE(491), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(491), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1309), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(491), + [sym_field_declaration] = STATE(491), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2114), + [aux_sym_preproc_def_token1] = ACTIONS(2232), + [aux_sym_preproc_if_token1] = ACTIONS(2235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), + [sym_preproc_directive] = ACTIONS(2241), + [anon_sym___extension__] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2137), + [anon_sym___attribute] = ACTIONS(2137), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2140), + [anon_sym___declspec] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_signed] = ACTIONS(2146), + [anon_sym_unsigned] = ACTIONS(2146), + [anon_sym_long] = ACTIONS(2146), + [anon_sym_short] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_auto] = ACTIONS(2149), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_constexpr] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2131), + [anon_sym_restrict] = ACTIONS(2131), + [anon_sym___restrict__] = ACTIONS(2131), + [anon_sym__Atomic] = ACTIONS(2131), + [anon_sym__Noreturn] = ACTIONS(2131), + [anon_sym_noreturn] = ACTIONS(2131), + [anon_sym__Nonnull] = ACTIONS(2131), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [aux_sym_primitive_type_token1] = ACTIONS(2155), + [anon_sym__BitInt] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + }, + [STATE(492)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(493)] = { + [sym_preproc_def] = STATE(498), + [sym_preproc_function_def] = STATE(498), + [sym_preproc_call] = STATE(498), + [sym_preproc_if_in_field_declaration_list] = STATE(498), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(498), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1309), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(498), + [sym_field_declaration] = STATE(498), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(498), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2248), + [aux_sym_preproc_if_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2252), + [sym_preproc_directive] = ACTIONS(2254), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(494)] = { + [sym_preproc_def] = STATE(503), + [sym_preproc_function_def] = STATE(503), + [sym_preproc_call] = STATE(503), + [sym_preproc_if_in_field_declaration_list] = STATE(503), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(503), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1307), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(503), + [sym_field_declaration] = STATE(503), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(503), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2258), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token2] = ACTIONS(2262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(495)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2268), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(496)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2270), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(497)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(498)] = { + [sym_preproc_def] = STATE(491), + [sym_preproc_function_def] = STATE(491), + [sym_preproc_call] = STATE(491), + [sym_preproc_if_in_field_declaration_list] = STATE(491), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(491), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1309), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(491), + [sym_field_declaration] = STATE(491), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(491), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2248), + [aux_sym_preproc_if_token1] = ACTIONS(2250), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2252), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2252), + [sym_preproc_directive] = ACTIONS(2254), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(499)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(500)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2278), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(501)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(502)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2282), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(503)] = { + [sym_preproc_def] = STATE(507), + [sym_preproc_function_def] = STATE(507), + [sym_preproc_call] = STATE(507), + [sym_preproc_if_in_field_declaration_list] = STATE(507), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(507), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1307), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(507), + [sym_field_declaration] = STATE(507), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(507), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [aux_sym_preproc_def_token1] = ACTIONS(2258), + [aux_sym_preproc_if_token1] = ACTIONS(2260), + [aux_sym_preproc_if_token2] = ACTIONS(2284), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2264), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2264), + [sym_preproc_directive] = ACTIONS(2266), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(504)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2286), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(505)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_RBRACK] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(506)] = { + [sym_expression] = STATE(1042), + [sym__string] = STATE(699), + [sym_comma_expression] = STATE(1597), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(507)] = { + [sym_preproc_def] = STATE(507), + [sym_preproc_function_def] = STATE(507), + [sym_preproc_call] = STATE(507), + [sym_preproc_if_in_field_declaration_list] = STATE(507), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(507), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1307), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym__field_declaration_list_item] = STATE(507), + [sym_field_declaration] = STATE(507), + [sym_macro_type_specifier] = STATE(778), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(507), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2114), + [aux_sym_preproc_def_token1] = ACTIONS(2290), + [aux_sym_preproc_if_token1] = ACTIONS(2293), + [aux_sym_preproc_if_token2] = ACTIONS(2123), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2296), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2296), + [sym_preproc_directive] = ACTIONS(2299), + [anon_sym___extension__] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym___attribute__] = ACTIONS(2137), + [anon_sym___attribute] = ACTIONS(2137), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2140), + [anon_sym___declspec] = ACTIONS(2143), + [anon_sym_signed] = ACTIONS(2146), + [anon_sym_unsigned] = ACTIONS(2146), + [anon_sym_long] = ACTIONS(2146), + [anon_sym_short] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_auto] = ACTIONS(2149), + [anon_sym_register] = ACTIONS(2134), + [anon_sym_inline] = ACTIONS(2134), + [anon_sym___inline] = ACTIONS(2134), + [anon_sym___inline__] = ACTIONS(2134), + [anon_sym___forceinline] = ACTIONS(2134), + [anon_sym_thread_local] = ACTIONS(2134), + [anon_sym___thread] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_constexpr] = ACTIONS(2131), + [anon_sym_volatile] = ACTIONS(2131), + [anon_sym_restrict] = ACTIONS(2131), + [anon_sym___restrict__] = ACTIONS(2131), + [anon_sym__Atomic] = ACTIONS(2131), + [anon_sym__Noreturn] = ACTIONS(2131), + [anon_sym_noreturn] = ACTIONS(2131), + [anon_sym__Nonnull] = ACTIONS(2131), + [anon_sym_alignas] = ACTIONS(2152), + [anon_sym__Alignas] = ACTIONS(2152), + [aux_sym_primitive_type_token1] = ACTIONS(2155), + [anon_sym__BitInt] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2167), + [sym_comment] = ACTIONS(3), + }, + [STATE(508)] = { + [sym_expression] = STATE(1090), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(509)] = { + [sym_expression] = STATE(1007), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(510)] = { + [sym_expression] = STATE(852), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(511)] = { + [sym_expression] = STATE(1059), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(512)] = { + [sym_expression] = STATE(1104), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(513)] = { + [sym_expression] = STATE(718), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(514)] = { + [sym_expression] = STATE(1008), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(515)] = { + [sym_expression] = STATE(1023), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(516)] = { + [sym_expression] = STATE(1011), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(517)] = { + [sym_expression] = STATE(1024), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(518)] = { + [sym_expression] = STATE(1009), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(519)] = { + [sym_expression] = STATE(1026), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(520)] = { + [sym_expression] = STATE(1095), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(521)] = { + [sym_expression] = STATE(720), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(522)] = { + [sym_expression] = STATE(1105), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(523)] = { + [sym_expression] = STATE(1012), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(524)] = { + [sym_expression] = STATE(1020), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(525)] = { + [sym_expression] = STATE(833), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(526)] = { + [sym_expression] = STATE(942), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(527)] = { + [sym_expression] = STATE(834), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(528)] = { + [sym_expression] = STATE(835), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(529)] = { + [sym_expression] = STATE(836), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(530)] = { + [sym_expression] = STATE(837), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(531)] = { + [sym_expression] = STATE(838), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(532)] = { + [sym_expression] = STATE(839), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(533)] = { + [sym_expression] = STATE(840), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(534)] = { + [sym_expression] = STATE(841), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(535)] = { + [sym_expression] = STATE(1019), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(536)] = { + [sym_expression] = STATE(842), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(537)] = { + [sym_expression] = STATE(1013), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(538)] = { + [sym_expression] = STATE(1010), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(539)] = { + [sym_expression] = STATE(1125), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(540)] = { + [sym_expression] = STATE(849), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(541)] = { + [sym_expression] = STATE(843), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(542)] = { + [sym_expression] = STATE(720), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(543)] = { + [sym_expression] = STATE(831), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(544)] = { + [sym_expression] = STATE(717), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(545)] = { + [sym_expression] = STATE(844), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(546)] = { + [sym_expression] = STATE(848), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(547)] = { + [sym_expression] = STATE(727), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(548)] = { + [sym_expression] = STATE(728), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(549)] = { + [sym_expression] = STATE(847), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(550)] = { + [sym_expression] = STATE(845), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(551)] = { + [sym_expression] = STATE(1025), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(552)] = { + [sym_expression] = STATE(853), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(553)] = { + [sym_expression] = STATE(850), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(554)] = { + [sym_expression] = STATE(855), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(555)] = { + [sym_expression] = STATE(1014), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(556)] = { + [sym_expression] = STATE(1106), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(557)] = { + [sym_expression] = STATE(1027), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(558)] = { + [sym_expression] = STATE(717), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(559)] = { + [sym_expression] = STATE(1039), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(560)] = { + [sym_expression] = STATE(1016), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(561)] = { + [sym_expression] = STATE(1018), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(562)] = { + [sym_expression] = STATE(727), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(563)] = { + [sym_expression] = STATE(1045), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(564)] = { + [sym_expression] = STATE(720), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(565)] = { + [sym_expression] = STATE(728), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(566)] = { + [sym_expression] = STATE(717), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(567)] = { + [sym_expression] = STATE(1121), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(568)] = { + [sym_expression] = STATE(727), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(569)] = { + [sym_expression] = STATE(1101), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(570)] = { + [sym_expression] = STATE(846), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(571)] = { + [sym_expression] = STATE(1122), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(572)] = { + [sym_expression] = STATE(851), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(573)] = { + [sym_expression] = STATE(717), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(574)] = { + [sym_expression] = STATE(718), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(575)] = { + [sym_expression] = STATE(1001), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(576)] = { + [sym_expression] = STATE(1099), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(577)] = { + [sym_expression] = STATE(1094), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(578)] = { + [sym_expression] = STATE(727), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(579)] = { + [sym_expression] = STATE(728), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2306), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(580)] = { + [sym_expression] = STATE(1060), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(581)] = { + [sym_expression] = STATE(1062), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(582)] = { + [sym_expression] = STATE(942), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(583)] = { + [sym_expression] = STATE(1063), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(584)] = { + [sym_expression] = STATE(1064), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(585)] = { + [sym_expression] = STATE(1065), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(586)] = { + [sym_expression] = STATE(1066), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(587)] = { + [sym_expression] = STATE(1067), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(588)] = { + [sym_expression] = STATE(1068), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(589)] = { + [sym_expression] = STATE(1069), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(590)] = { + [sym_expression] = STATE(1070), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(591)] = { + [sym_expression] = STATE(1130), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(592)] = { + [sym_expression] = STATE(1074), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(593)] = { + [sym_expression] = STATE(1076), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(594)] = { + [sym_expression] = STATE(940), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(595)] = { + [sym_expression] = STATE(925), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(596)] = { + [sym_expression] = STATE(926), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(597)] = { + [sym_expression] = STATE(924), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(598)] = { + [sym_expression] = STATE(928), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(599)] = { + [sym_expression] = STATE(929), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(600)] = { + [sym_expression] = STATE(930), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(601)] = { + [sym_expression] = STATE(931), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(602)] = { + [sym_expression] = STATE(927), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(603)] = { + [sym_expression] = STATE(932), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(604)] = { + [sym_expression] = STATE(934), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(605)] = { + [sym_expression] = STATE(937), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(606)] = { + [sym_expression] = STATE(923), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(607)] = { + [sym_expression] = STATE(938), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(608)] = { + [sym_expression] = STATE(935), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(609)] = { + [sym_expression] = STATE(856), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1502), + [anon_sym_DASH_DASH] = ACTIONS(2186), + [anon_sym_PLUS_PLUS] = ACTIONS(2186), + [anon_sym_sizeof] = ACTIONS(1506), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(610)] = { + [sym_expression] = STATE(1107), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(611)] = { + [sym_expression] = STATE(1061), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(612)] = { + [sym_expression] = STATE(1115), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(613)] = { + [sym_expression] = STATE(1116), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(860), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(860), + [sym_call_expression] = STATE(860), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(860), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(860), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(23), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(29), + [anon_sym___extension__] = ACTIONS(1526), + [anon_sym_DASH_DASH] = ACTIONS(91), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_sizeof] = ACTIONS(93), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(614)] = { + [sym_expression] = STATE(1029), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(615)] = { + [sym_expression] = STATE(937), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(616)] = { + [sym_expression] = STATE(939), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_BANG] = ACTIONS(1828), + [anon_sym_TILDE] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1830), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_PLUS_PLUS] = ACTIONS(2220), + [anon_sym_sizeof] = ACTIONS(1832), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(617)] = { + [sym_expression] = STATE(923), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(618)] = { + [sym_expression] = STATE(938), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(948), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(948), + [sym_call_expression] = STATE(948), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(948), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(948), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(689), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1866), + [anon_sym_LPAREN2] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_TILDE] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym___extension__] = ACTIONS(1872), + [anon_sym_DASH_DASH] = ACTIONS(1940), + [anon_sym_PLUS_PLUS] = ACTIONS(1940), + [anon_sym_sizeof] = ACTIONS(1874), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(619)] = { + [sym_expression] = STATE(1030), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(620)] = { + [sym_expression] = STATE(720), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(621)] = { + [sym_expression] = STATE(1031), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(622)] = { + [sym_expression] = STATE(1032), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(623)] = { + [sym_expression] = STATE(1002), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(624)] = { + [sym_expression] = STATE(1003), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(625)] = { + [sym_expression] = STATE(1004), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(626)] = { + [sym_expression] = STATE(1005), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(627)] = { + [sym_expression] = STATE(1006), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(859), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(859), + [sym_call_expression] = STATE(859), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(859), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(859), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_TILDE] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1844), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1848), + [anon_sym_DASH_DASH] = ACTIONS(2210), + [anon_sym_PLUS_PLUS] = ACTIONS(2210), + [anon_sym_sizeof] = ACTIONS(1850), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(628)] = { + [sym_expression] = STATE(728), + [sym__string] = STATE(699), + [sym_conditional_expression] = STATE(699), + [sym_assignment_expression] = STATE(699), + [sym_pointer_expression] = STATE(696), + [sym_unary_expression] = STATE(699), + [sym_binary_expression] = STATE(699), + [sym_update_expression] = STATE(699), + [sym_cast_expression] = STATE(699), + [sym_sizeof_expression] = STATE(699), + [sym_alignof_expression] = STATE(699), + [sym_offsetof_expression] = STATE(699), + [sym_static_assert_expression] = STATE(699), + [sym_typeof_expression] = STATE(699), + [sym_generic_expression] = STATE(699), + [sym_subscript_expression] = STATE(696), + [sym_call_expression] = STATE(696), + [sym_gnu_asm_expression] = STATE(699), + [sym_extension_expression] = STATE(699), + [sym_field_expression] = STATE(696), + [sym_compound_literal_expression] = STATE(699), + [sym_parenthesized_expression] = STATE(696), + [sym_char_literal] = STATE(699), + [sym_concatenated_string] = STATE(699), + [sym_string_literal] = STATE(736), + [sym_null] = STATE(699), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(2312), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym___extension__] = ACTIONS(1520), + [anon_sym_DASH_DASH] = ACTIONS(2180), + [anon_sym_PLUS_PLUS] = ACTIONS(2180), + [anon_sym_sizeof] = ACTIONS(1522), + [anon_sym___alignof__] = ACTIONS(95), + [anon_sym___alignof] = ACTIONS(95), + [anon_sym__alignof] = ACTIONS(95), + [anon_sym_alignof] = ACTIONS(95), + [anon_sym__Alignof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym_static_assert] = ACTIONS(99), + [anon_sym__Static_assert] = ACTIONS(99), + [anon_sym_typeof] = ACTIONS(101), + [anon_sym_typeof_unqual] = ACTIONS(101), + [anon_sym__Generic] = ACTIONS(103), + [anon_sym_asm] = ACTIONS(105), + [anon_sym___asm__] = ACTIONS(105), + [anon_sym___asm] = ACTIONS(105), + [sym_number_literal] = ACTIONS(177), + [anon_sym_L_SQUOTE] = ACTIONS(109), + [anon_sym_u_SQUOTE] = ACTIONS(109), + [anon_sym_U_SQUOTE] = ACTIONS(109), + [anon_sym_u8_SQUOTE] = ACTIONS(109), + [anon_sym_SQUOTE] = ACTIONS(109), + [anon_sym_L_DQUOTE] = ACTIONS(111), + [anon_sym_u_DQUOTE] = ACTIONS(111), + [anon_sym_U_DQUOTE] = ACTIONS(111), + [anon_sym_u8_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym_true] = ACTIONS(179), + [sym_false] = ACTIONS(179), + [anon_sym_NULL] = ACTIONS(115), + [anon_sym_nullptr] = ACTIONS(115), + [sym_comment] = ACTIONS(3), + }, + [STATE(629)] = { + [sym_function_definition] = STATE(130), + [sym_declaration] = STATE(130), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1174), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(678), + [sym_declaration_list] = STATE(130), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(630)] = { + [sym_function_definition] = STATE(277), + [sym_declaration] = STATE(277), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1183), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(677), + [sym_declaration_list] = STATE(277), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(631)] = { + [sym_function_definition] = STATE(266), + [sym_declaration] = STATE(266), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1179), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(683), + [sym_declaration_list] = STATE(266), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [STATE(632)] = { + [sym_function_definition] = STATE(340), + [sym_declaration] = STATE(340), + [sym__declaration_modifiers] = STATE(688), + [sym__declaration_specifiers] = STATE(1182), + [sym_attribute_specifier] = STATE(688), + [sym_attribute_declaration] = STATE(688), + [sym_ms_declspec_modifier] = STATE(688), + [sym_ms_call_modifier] = STATE(681), + [sym_declaration_list] = STATE(340), + [sym_storage_class_specifier] = STATE(688), + [sym_type_qualifier] = STATE(688), + [sym_alignas_qualifier] = STATE(715), + [sym_type_specifier] = STATE(754), + [sym_auto_type] = STATE(778), + [sym_sized_type_specifier] = STATE(778), + [sym_primitive_type] = STATE(803), + [sym_enum_specifier] = STATE(778), + [sym_struct_specifier] = STATE(778), + [sym_union_specifier] = STATE(778), + [sym_macro_type_specifier] = STATE(778), + [aux_sym__declaration_specifiers_repeat1] = STATE(688), + [aux_sym_sized_type_specifier_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(2062), + [anon_sym___extension__] = ACTIONS(55), + [anon_sym_extern] = ACTIONS(51), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym___attribute] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1210), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(45), + [anon_sym___clrcall] = ACTIONS(45), + [anon_sym___stdcall] = ACTIONS(45), + [anon_sym___fastcall] = ACTIONS(45), + [anon_sym___thiscall] = ACTIONS(45), + [anon_sym___vectorcall] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_signed] = ACTIONS(49), + [anon_sym_unsigned] = ACTIONS(49), + [anon_sym_long] = ACTIONS(49), + [anon_sym_short] = ACTIONS(49), + [anon_sym_static] = ACTIONS(51), + [anon_sym_auto] = ACTIONS(53), + [anon_sym_register] = ACTIONS(51), + [anon_sym_inline] = ACTIONS(51), + [anon_sym___inline] = ACTIONS(51), + [anon_sym___inline__] = ACTIONS(51), + [anon_sym___forceinline] = ACTIONS(51), + [anon_sym_thread_local] = ACTIONS(51), + [anon_sym___thread] = ACTIONS(51), + [anon_sym_const] = ACTIONS(55), + [anon_sym_constexpr] = ACTIONS(55), + [anon_sym_volatile] = ACTIONS(55), + [anon_sym_restrict] = ACTIONS(55), + [anon_sym___restrict__] = ACTIONS(55), + [anon_sym__Atomic] = ACTIONS(55), + [anon_sym__Noreturn] = ACTIONS(55), + [anon_sym_noreturn] = ACTIONS(55), + [anon_sym__Nonnull] = ACTIONS(55), + [anon_sym_alignas] = ACTIONS(57), + [anon_sym__Alignas] = ACTIONS(57), + [aux_sym_primitive_type_token1] = ACTIONS(59), + [anon_sym__BitInt] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_struct] = ACTIONS(65), + [anon_sym_union] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1876), 1, + anon_sym_const, + ACTIONS(1880), 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(984), 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(1886), 1, 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15290] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, + ACTIONS(1893), 1, + anon_sym_EQ, + STATE(639), 1, sym_string_literal, - STATE(963), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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, + STATE(809), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1899), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(2322), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15397] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1072), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1897), 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(1884), 11, 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15504] = 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(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(815), 1, - sym_expression, - ACTIONS(25), 2, - anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15611] = 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(1404), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1889), 11, anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1085), 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_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(1878), 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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15718] = 22, + anon_sym_DOT, + anon_sym_DASH_GT, + [91] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1912), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2324), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(964), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15825] = 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(1404), 1, + ACTIONS(2326), 1, + anon_sym_RPAREN, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1149), 1, + sym__declaration_specifiers, + STATE(1589), 1, + sym_variadic_parameter, + STATE(1694), 1, + sym_parameter_declaration, + STATE(2014), 1, + sym_compound_statement, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 10, anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1088), 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [15932] = 22, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [209] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1912), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1914), 1, + anon_sym_RPAREN, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(697), 1, - sym_expression, - STATE(713), 1, - sym_string_literal, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16039] = 22, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1149), 1, + sym__declaration_specifiers, + STATE(2014), 1, + sym_compound_statement, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1694), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, + ACTIONS(2328), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, + STATE(637), 2, sym_string_literal, - STATE(965), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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, + aux_sym_concatenated_string_repeat1, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16146] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(905), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, + ACTIONS(2332), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1839), 2, + 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, + ACTIONS(2330), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(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_DASH_GT, + [397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2334), 1, + sym_identifier, + STATE(637), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2341), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16253] = 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(1378), 1, - sym_identifier, - ACTIONS(1726), 1, - anon_sym___extension__, - ACTIONS(1728), 1, - anon_sym_sizeof, - ACTIONS(2162), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(906), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1722), 2, + ACTIONS(2339), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1724), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(2164), 2, + 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, + ACTIONS(2337), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16360] = 22, + anon_sym_DASH_GT, + [469] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1799), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(416), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(1805), 1, + STATE(261), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 10, anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 1, + sym_identifier, + STATE(636), 2, sym_string_literal, - STATE(907), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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, + aux_sym_concatenated_string_repeat1, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16467] = 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(1799), 1, - sym_identifier, - ACTIONS(1805), 1, - anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(885), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, + ACTIONS(2348), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1839), 2, + 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, + ACTIONS(2346), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16574] = 22, + anon_sym_DASH_GT, + [651] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(324), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [761] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(140), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [871] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(416), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(1388), 1, + STATE(316), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 10, anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(823), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [981] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1799), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(1805), 1, + STATE(333), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 10, anon_sym___extension__, - ACTIONS(1807), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(1036), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1803), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1827), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1839), 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(911), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + [1091] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(554), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(966), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [16895] = 22, + STATE(309), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [1201] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(554), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(967), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17002] = 22, + STATE(263), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [1311] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(968), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17109] = 22, + STATE(147), 1, + sym_compound_statement, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [1421] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, + ACTIONS(2363), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2366), 1, + anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(2360), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2369), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2352), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(816), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17216] = 22, + anon_sym_SEMI, + STATE(647), 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(2354), 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(2357), 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(2350), 18, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [1502] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, + ACTIONS(2379), 1, + anon_sym_static, + STATE(682), 1, + sym_alignas_qualifier, + ACTIONS(2382), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(648), 2, + sym_type_qualifier, + aux_sym_array_declarator_repeat1, + ACTIONS(2376), 10, anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + ACTIONS(2374), 19, anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(969), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2146), 2, + anon_sym_RBRACK, 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, + sym_number_literal, 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17323] = 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(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(970), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, + ACTIONS(2372), 22, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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_sizeof, 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17430] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(91), 1, + anon_sym_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LPAREN2, - STATE(713), 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(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2120), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2146), 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17537] = 22, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [1577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_offsetof, - ACTIONS(91), 1, - anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1744), 1, - anon_sym___extension__, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(2142), 1, - sym_identifier, - ACTIONS(2144), 1, + ACTIONS(1840), 21, anon_sym_LPAREN2, - STATE(713), 1, - sym_string_literal, - STATE(972), 1, - sym_expression, - ACTIONS(103), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(163), 2, - sym_true, - sym_false, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2120), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2146), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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, + sym_number_literal, 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(835), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17644] = 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(1404), 1, - anon_sym___extension__, - ACTIONS(1738), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(960), 1, - sym_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1838), 36, 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___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, - 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(837), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17751] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, anon_sym_offsetof, - ACTIONS(91), 1, + anon_sym_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, anon_sym__Generic, - ACTIONS(161), 1, - sym_number_literal, - ACTIONS(1378), 1, - sym_identifier, - ACTIONS(1388), 1, - anon_sym___extension__, - ACTIONS(1392), 1, - anon_sym_sizeof, - ACTIONS(2128), 1, - anon_sym_LPAREN2, - STATE(663), 1, - sym_string_literal, - STATE(691), 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(1382), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1384), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2130), 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(675), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(684), 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, - [17858] = 6, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [1642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2208), 1, - sym_identifier, - STATE(620), 2, + STATE(639), 1, sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2215), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2213), 17, + ACTIONS(1884), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76249,7 +80755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2211), 33, + sym_identifier, + ACTIONS(1878), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76283,192 +80790,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17930] = 6, + [1711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - sym_identifier, - STATE(622), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(99), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2222), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2387), 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, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2220), 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_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18002] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - sym_identifier, - STATE(620), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(99), 5, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2228), 17, - aux_sym_preproc_elif_token1, + ACTIONS(2385), 36, anon_sym_DASH, anon_sym_PLUS, - 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, - ACTIONS(2226), 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, - [18074] = 24, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [1776] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, ACTIONS(43), 1, - anon_sym_LBRACE, + anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1811), 1, + ACTIONS(1912), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1813), 1, - anon_sym_RPAREN, - ACTIONS(1938), 1, + ACTIONS(2389), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1118), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1149), 1, sym__declaration_specifiers, - STATE(1943), 1, - sym_compound_statement, - ACTIONS(35), 2, + STATE(1724), 1, + sym_variadic_parameter, + STATE(1737), 1, + sym_parameter_declaration, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1598), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76476,10 +80915,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -76487,7 +80925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76498,61 +80936,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [18181] = 25, + [1885] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(2391), 1, + sym_identifier, + ACTIONS(2403), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2406), 1, anon_sym___declspec, - ACTIONS(43), 1, + ACTIONS(2409), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + ACTIONS(2414), 1, + anon_sym_auto, + ACTIONS(2420), 1, + aux_sym_primitive_type_token1, + ACTIONS(2423), 1, + anon_sym__BitInt, + ACTIONS(2426), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(2429), 1, anon_sym_struct, + ACTIONS(2432), 1, + anon_sym_union, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(2400), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2417), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(653), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(2411), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(2397), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2394), 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, + [1992] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1811), 1, + ACTIONS(1912), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2230), 1, + ACTIONS(2062), 1, sym_identifier, - ACTIONS(2232), 1, - anon_sym_RPAREN, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1118), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1149), 1, sym__declaration_specifiers, - STATE(1537), 1, - sym_variadic_parameter, - STATE(1598), 1, - sym_parameter_declaration, - STATE(1943), 1, - sym_compound_statement, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + STATE(1737), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76560,10 +81081,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -76571,7 +81091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76582,18 +81102,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [18290] = 5, + [2099] = 3, ACTIONS(3), 1, sym_comment, - STATE(621), 1, - sym_string_literal, - ACTIONS(99), 5, + ACTIONS(1836), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1770), 18, + ACTIONS(1834), 36, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [2164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2435), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76609,10 +81183,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(1764), 33, + ACTIONS(2437), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76628,8 +81206,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, @@ -76646,28 +81225,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18359] = 11, + [2228] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2250), 1, + ACTIONS(43), 1, anon_sym___declspec, - STATE(711), 1, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, sym_alignas_qualifier, - ACTIONS(2244), 2, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2253), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2236), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(626), 7, + STATE(641), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76675,7 +81285,17 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2238), 10, + ACTIONS(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76686,10 +81306,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2241), 10, + [2332] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(646), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -76697,28 +81376,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(2234), 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, - [18439] = 3, + ACTIONS(55), 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, + [2436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 18, + ACTIONS(2439), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76737,7 +81409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2258), 38, + ACTIONS(2441), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76776,10 +81448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [18503] = 3, + [2500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2260), 22, + ACTIONS(2443), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76802,7 +81474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2262), 34, + ACTIONS(2445), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76837,10 +81509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18567] = 3, + [2564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 22, + ACTIONS(2447), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76863,7 +81535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2266), 34, + ACTIONS(2449), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -76898,71 +81570,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18631] = 3, + [2628] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2268), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, 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(2270), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_SEMI, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(644), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [2732] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [18695] = 3, + ACTIONS(2062), 1, + sym_identifier, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(645), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [2836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2272), 22, + ACTIONS(2451), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -76985,7 +81758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2274), 34, + ACTIONS(2453), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77020,10 +81793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18759] = 3, + [2900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2276), 22, + ACTIONS(2455), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77046,7 +81819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2278), 34, + ACTIONS(2457), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77081,10 +81854,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18823] = 3, + [2964] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(642), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [3068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 22, + ACTIONS(2459), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77107,7 +81961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2282), 34, + ACTIONS(2461), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77142,10 +81996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18887] = 3, + [3132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2284), 22, + ACTIONS(2463), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77168,7 +82022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2286), 34, + ACTIONS(2465), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77203,10 +82057,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [18951] = 3, + [3196] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(53), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2062), 1, + sym_identifier, + STATE(700), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(754), 1, + sym_type_specifier, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, + sym__declaration_specifiers, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(638), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(49), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(688), 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(51), 9, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(55), 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, + [3300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2288), 22, + ACTIONS(2467), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77229,7 +82164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2290), 34, + ACTIONS(2469), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77264,10 +82199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19015] = 3, + [3364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 18, + ACTIONS(2471), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77283,10 +82218,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(2294), 38, + ACTIONS(2473), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77302,8 +82241,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, @@ -77320,15 +82260,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, - [19079] = 3, + [3428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2296), 22, + ACTIONS(2475), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77351,7 +82286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, sym_identifier, - ACTIONS(2298), 34, + ACTIONS(2477), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77386,10 +82321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19143] = 3, + [3492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 22, + ACTIONS(2479), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -77405,14 +82340,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(2302), 34, + ACTIONS(2481), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -77428,9 +82359,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, @@ -77447,214 +82377,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [19207] = 22, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [3556] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 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(430), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, - sym_identifier, - STATE(294), 1, - sym_compound_statement, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(647), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [19308] = 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(1938), 1, - sym_identifier, - STATE(335), 1, - sym_compound_statement, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(647), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [19409] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(301), 1, - sym_compound_statement, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(647), 2, + STATE(643), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77662,10 +82442,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -77673,7 +82452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77684,56 +82463,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19510] = 22, + [3660] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(130), 1, - sym_compound_statement, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1185), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(647), 2, + STATE(640), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77741,10 +82523,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -77752,7 +82533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77763,65 +82544,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19611] = 22, + [3764] = 3, 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, + ACTIONS(2485), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, - sym_identifier, - STATE(325), 1, - sym_compound_statement, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(2483), 46, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(647), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + anon_sym___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, - STATE(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -77831,8 +82584,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, @@ -77842,291 +82593,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [19712] = 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(133), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, - sym_identifier, - STATE(140), 1, - sym_compound_statement, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(647), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [19813] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, - ACTIONS(57), 1, anon_sym_struct, - ACTIONS(59), 1, anon_sym_union, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - STATE(280), 1, - sym_compound_statement, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(647), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [19914] = 22, + [3827] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(272), 1, - sym_compound_statement, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(647), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [20015] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 1, - sym_identifier, - ACTIONS(2316), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2319), 1, - anon_sym___declspec, - ACTIONS(2322), 1, - anon_sym_LBRACE, - ACTIONS(2330), 1, + STATE(803), 1, sym_primitive_type, - ACTIONS(2333), 1, - anon_sym_enum, - ACTIONS(2336), 1, - anon_sym_struct, - ACTIONS(2339), 1, - anon_sym_union, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, + STATE(1294), 1, sym__declaration_specifiers, - ACTIONS(2313), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2327), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(647), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(2324), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78134,21 +82661,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2307), 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(2310), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78156,46 +82671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [20113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2344), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(2342), 45, + ACTIONS(55), 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_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, @@ -78205,64 +82682,56 @@ 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, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - [20175] = 21, + [3927] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1811), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1118), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1296), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1748), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78270,10 +82739,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78281,7 +82749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78292,55 +82760,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20273] = 22, + [4027] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1811), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2346), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1118), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1281), 1, sym__declaration_specifiers, - STATE(1695), 1, - sym_variadic_parameter, - STATE(1748), 1, - sym_parameter_declaration, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78348,10 +82817,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78359,7 +82827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78370,52 +82838,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20373] = 20, + [4127] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1274), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(643), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78423,10 +82895,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78434,7 +82905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78445,52 +82916,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20468] = 20, + [4227] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1293), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(642), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78498,10 +82973,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78509,7 +82983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78520,18 +82994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20563] = 3, + [4327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 21, + ACTIONS(1818), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_number_literal, @@ -78545,23 +83017,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2348), 32, + ACTIONS(1816), 35, 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_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, @@ -78569,6 +83040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignof, anon_sym__Alignof, anon_sym_offsetof, + anon_sym_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, anon_sym__Generic, anon_sym_asm, anon_sym___asm__, @@ -78578,127 +83053,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [20624] = 20, + [4389] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(644), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [20719] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1291), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(640), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78706,10 +83110,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78717,7 +83120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78728,18 +83131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20814] = 3, + [4489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 21, + ACTIONS(2489), 19, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_number_literal, @@ -78753,23 +83154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1734), 32, + ACTIONS(2487), 35, 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_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, @@ -78777,6 +83177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignof, anon_sym__Alignof, anon_sym_offsetof, + anon_sym_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, anon_sym__Generic, anon_sym_asm, anon_sym___asm__, @@ -78786,52 +83190,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [20875] = 20, + [4551] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1252), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(639), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78839,10 +83247,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78850,7 +83257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78861,52 +83268,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [20970] = 20, + [4651] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(754), 1, sym_type_specifier, - STATE(1156), 1, + STATE(803), 1, + sym_primitive_type, + STATE(1269), 1, sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(645), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(688), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78914,10 +83325,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -78925,7 +83335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -78936,119 +83346,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [21065] = 3, + [4751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1732), 21, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(2498), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2493), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1730), 32, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_COLON, + ACTIONS(2495), 10, 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, - [21126] = 20, - 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + anon_sym_const, + 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(2491), 31, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(641), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + anon_sym___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, - STATE(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -79058,63 +83402,60 @@ 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, - [21221] = 20, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [4820] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + anon_sym_auto, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(57), 1, + ACTIONS(65), 1, anon_sym_struct, - ACTIONS(59), 1, + ACTIONS(67), 1, anon_sym_union, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, + ACTIONS(2062), 1, sym_identifier, - STATE(704), 1, + STATE(700), 1, aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, + STATE(751), 1, sym_type_specifier, - STATE(1156), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + STATE(803), 1, + sym_primitive_type, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(646), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(49), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, + STATE(778), 6, + sym_auto_type, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(695), 7, + STATE(647), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -79122,10 +83463,9 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, + ACTIONS(51), 9, anon_sym_extern, anon_sym_static, - anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym___inline, @@ -79133,31 +83473,7 @@ 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, - [21316] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2359), 1, - anon_sym_static, - STATE(700), 1, - sym_alignas_qualifier, - ACTIONS(2362), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(662), 2, - sym_type_qualifier, - aux_sym_array_declarator_repeat1, - ACTIONS(2356), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -79168,59 +83484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - ACTIONS(2352), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2354), 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, - [21387] = 6, + [4917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2501), 1, sym_identifier, - STATE(621), 1, + STATE(639), 1, sym_string_literal, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2369), 16, + ACTIONS(2505), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -79237,7 +83514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2367), 29, + ACTIONS(2503), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79267,10 +83544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21453] = 3, + [4983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 18, + ACTIONS(2385), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79289,7 +83566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2350), 34, + ACTIONS(2387), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79319,148 +83596,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - [21513] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(2378), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2373), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2375), 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(2371), 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, - [21581] = 19, - 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1243), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [21672] = 3, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [5043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 18, + ACTIONS(2507), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79479,7 +83623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2383), 33, + ACTIONS(2509), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79513,10 +83657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21731] = 3, + [5102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 18, + ACTIONS(2511), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79535,7 +83679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2387), 33, + ACTIONS(2513), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79569,10 +83713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21790] = 3, + [5161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 18, + ACTIONS(2515), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79591,7 +83735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2391), 33, + ACTIONS(2517), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79625,10 +83769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21849] = 3, + [5220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2393), 18, + ACTIONS(2519), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79647,7 +83791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2395), 33, + ACTIONS(2521), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79681,10 +83825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21908] = 3, + [5279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2397), 18, + ACTIONS(2523), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79703,7 +83847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2399), 33, + ACTIONS(2525), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79737,10 +83881,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [21967] = 3, + [5338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 18, + ACTIONS(1884), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79759,7 +83903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2403), 33, + ACTIONS(1878), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79793,10 +83937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22026] = 3, + [5397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2405), 18, + ACTIONS(2527), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79815,7 +83959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2407), 33, + ACTIONS(2529), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79849,10 +83993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22085] = 3, + [5456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 18, + ACTIONS(2531), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79871,7 +84015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2411), 33, + ACTIONS(2533), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79905,10 +84049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22144] = 3, + [5515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1770), 18, + ACTIONS(1884), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -79927,7 +84071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1764), 33, + ACTIONS(1878), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -79961,68 +84105,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22203] = 19, + [5574] = 13, 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(1938), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(2535), 1, sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1258), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(51), 2, + STATE(783), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(805), 1, + sym_primitive_type, + ACTIONS(2547), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(45), 4, + STATE(706), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2545), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, + ACTIONS(2538), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2540), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -80033,10 +84149,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [22294] = 3, + ACTIONS(2543), 21, + 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, + [5653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 18, + ACTIONS(2550), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80055,7 +84193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2415), 33, + ACTIONS(2552), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80089,10 +84227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22353] = 3, + [5712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2417), 18, + ACTIONS(2554), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80111,7 +84249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2419), 33, + ACTIONS(2556), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80145,10 +84283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22412] = 3, + [5771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 18, + ACTIONS(2558), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80167,7 +84305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2423), 33, + ACTIONS(2560), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80201,10 +84339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22471] = 3, + [5830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2425), 18, + ACTIONS(2562), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80223,7 +84361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2427), 33, + ACTIONS(2564), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80257,10 +84395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22530] = 3, + [5889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2429), 18, + ACTIONS(2566), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80279,7 +84417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2431), 33, + ACTIONS(2568), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80313,10 +84451,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22589] = 3, + [5948] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(2570), 1, + sym_identifier, + STATE(715), 1, + sym_alignas_qualifier, + STATE(814), 1, + sym_primitive_type, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2582), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2580), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2573), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2575), 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(2578), 21, + 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, + [6027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2433), 18, + ACTIONS(2585), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80335,7 +84539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2435), 33, + ACTIONS(2587), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80369,82 +84573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22648] = 19, + [6086] = 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1240), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [22739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 18, + ACTIONS(2589), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80463,7 +84595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1764), 33, + ACTIONS(2591), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80497,370 +84629,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [22798] = 19, - 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1259), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [22889] = 19, - 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1248), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [22980] = 19, - 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1261), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [23071] = 19, + [6145] = 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(1938), 1, - sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1251), 1, - sym__declaration_specifiers, - ACTIONS(35), 2, + ACTIONS(2593), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [23162] = 19, - 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(1938), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(720), 1, - sym_type_specifier, - STATE(1253), 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(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(695), 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, - [23253] = 3, + ACTIONS(2595), 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, + [6204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 18, + ACTIONS(2597), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80879,7 +84707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2439), 33, + ACTIONS(2599), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -80913,19 +84741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23312] = 7, + [6263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2441), 17, + ACTIONS(2601), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -80942,14 +84761,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2443), 28, + ACTIONS(2603), 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, @@ -80958,6 +84780,8 @@ 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, @@ -80972,22 +84796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [23378] = 8, + anon_sym_DASH_GT, + [6322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2451), 17, + ACTIONS(2605), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81004,14 +84817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2453), 26, + ACTIONS(2607), 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, @@ -81020,6 +84836,8 @@ 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, @@ -81032,10 +84850,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23446] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [6381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 17, + ACTIONS(2609), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81052,8 +84873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2459), 33, + ACTIONS(2611), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81068,9 +84891,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_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -81085,36 +84908,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, anon_sym_DASH_GT, - [23504] = 3, + [6440] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 19, + ACTIONS(2617), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_field_declaration_list, + STATE(764), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2615), 7, + anon_sym_COMMA, + anon_sym_RPAREN, 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(2461), 31, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2613), 38, 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, @@ -81126,72 +84965,100 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [23562] = 18, + [6506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(1818), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1816), 43, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - ACTIONS(53), 1, - sym_primitive_type, - ACTIONS(55), 1, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, - ACTIONS(57), 1, anon_sym_struct, - ACTIONS(59), 1, anon_sym_union, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1938), 1, sym_identifier, - STATE(704), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(711), 1, - sym_alignas_qualifier, - STATE(719), 1, - sym_type_specifier, - ACTIONS(35), 2, + [6564] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_field_declaration_list, + STATE(758), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(45), 4, + ACTIONS(2621), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2619), 38, + 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, - STATE(770), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(626), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -81201,8 +85068,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, @@ -81212,10 +85077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [23650] = 3, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [6630] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 17, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2623), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81233,14 +85112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2467), 33, + ACTIONS(2625), 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, anon_sym_EQ_EQ, @@ -81248,9 +85126,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, @@ -81265,24 +85141,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [23708] = 8, + [6696] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 17, + ACTIONS(2633), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81300,7 +85174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2471), 26, + ACTIONS(2635), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81327,10 +85201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23776] = 3, + [6764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 17, + ACTIONS(2639), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81348,7 +85222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2475), 33, + ACTIONS(2641), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81382,22 +85256,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23834] = 8, + [6822] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2477), 17, + ACTIONS(2643), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81415,7 +85289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2479), 26, + ACTIONS(2645), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81442,77 +85316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1708), 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(1706), 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, - [23960] = 8, + [6890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2481), 17, + ACTIONS(2647), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81530,13 +85337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2483), 26, + ACTIONS(2649), 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, @@ -81544,7 +85352,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, @@ -81557,22 +85367,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24028] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [6948] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2485), 17, + ACTIONS(2651), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -81590,7 +85404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_EQ, sym_identifier, - ACTIONS(2487), 26, + ACTIONS(2653), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -81617,19 +85431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24096] = 7, + [7016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2617), 1, anon_sym_LBRACE, - STATE(728), 1, + STATE(753), 1, sym_field_declaration_list, - STATE(749), 1, + STATE(770), 1, sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2491), 7, + ACTIONS(2657), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81637,7 +85451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2489), 37, + ACTIONS(2655), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -81673,49 +85487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [24161] = 11, + [7082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 1, - sym_identifier, - ACTIONS(2510), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(750), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2507), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(712), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2505), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2498), 6, + ACTIONS(2661), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2500), 10, + anon_sym_LBRACE, + ACTIONS(2659), 43, anon_sym___extension__, - anon_sym_const, - 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(2503), 21, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, @@ -81727,47 +85514,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24234] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_field_declaration_list, - STATE(766), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2514), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2512), 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, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -81793,20 +85539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24299] = 3, + [7140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2518), 7, + ACTIONS(2489), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2516), 42, + anon_sym_COLON, + ACTIONS(2487), 43, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -81844,15 +85594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [24356] = 3, + [7198] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 7, + ACTIONS(2617), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_field_declaration_list, + STATE(768), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2665), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81860,11 +85620,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2461), 42, + ACTIONS(2663), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -81898,24 +85656,197 @@ 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [7264] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2667), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + sym_identifier, + ACTIONS(2669), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7332] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2671), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + sym_identifier, + ACTIONS(2673), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [7400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, sym_identifier, - [24413] = 7, + ACTIONS(2677), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [7458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2617), 1, anon_sym_LBRACE, - STATE(725), 1, + STATE(741), 1, sym_field_declaration_list, - STATE(756), 1, + STATE(773), 1, sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2522), 7, + ACTIONS(2681), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -81923,7 +85854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2520), 37, + ACTIONS(2679), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -81959,31 +85890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [24478] = 7, + [7524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_field_declaration_list, - STATE(734), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2526), 7, + ACTIONS(1840), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2524), 37, + ACTIONS(1838), 43, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82017,32 +85941,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [24543] = 7, + [7581] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_field_declaration_list, - STATE(759), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, + ACTIONS(1893), 1, + anon_sym_EQ, + STATE(639), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1897), 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(1884), 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(2530), 7, + ACTIONS(1878), 19, 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, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2528), 37, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [7646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2688), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2686), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(2691), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -82050,11 +86024,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, + anon_sym_LBRACK, + ACTIONS(2693), 9, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + ACTIONS(2683), 26, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -82075,20 +86061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [24608] = 3, + [7709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1708), 7, + ACTIONS(1836), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1706), 42, + ACTIONS(1834), 43, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -82126,85 +86110,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [24665] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2532), 1, - sym_identifier, - ACTIONS(2547), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(745), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2544), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2542), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2535), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2537), 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(2540), 21, - 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, - [24738] = 5, + [7766] = 7, ACTIONS(3), 1, sym_comment, - STATE(621), 1, + ACTIONS(2695), 1, + anon_sym_EQ, + STATE(639), 1, sym_string_literal, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2369), 15, + ACTIONS(2697), 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(1884), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82218,9 +86154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, sym_identifier, - ACTIONS(2367), 28, + ACTIONS(1878), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -82235,45 +86170,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24799] = 7, + [7831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, - anon_sym_EQ, - STATE(621), 1, + STATE(639), 1, sym_string_literal, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2551), 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(1770), 14, + ACTIONS(2505), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -82287,8 +86199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, sym_identifier, - ACTIONS(1764), 18, + ACTIONS(2503), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -82303,24 +86216,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24864] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1782), 1, - anon_sym_EQ, - STATE(621), 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(1786), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -82331,62 +86226,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1770), 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(1764), 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [7892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2699), 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(2693), 43, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [7949] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(766), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2703), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [24929] = 11, + ACTIONS(2701), 38, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [8009] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2555), 5, + ACTIONS(2707), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(626), 7, + STATE(647), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -82394,7 +86368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2553), 9, + ACTIONS(2705), 9, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -82404,7 +86378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___vectorcall, anon_sym_LBRACK, sym_identifier, - ACTIONS(47), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -82415,7 +86389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -82426,21 +86400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25001] = 3, + [8081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1732), 6, + STATE(769), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2711), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1730), 42, + anon_sym_COLON, + ACTIONS(2709), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82474,26 +86452,28 @@ 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25057] = 3, + [8141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1736), 6, + STATE(757), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2715), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1734), 42, + anon_sym_COLON, + ACTIONS(2713), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82527,41 +86507,29 @@ 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25113] = 11, + [8201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + STATE(762), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2559), 5, + ACTIONS(2719), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(721), 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(2557), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2717), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -82569,10 +86537,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, @@ -82582,8 +86551,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, @@ -82593,36 +86560,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25185] = 11, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [8261] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2723), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + anon_sym_COLON, + ACTIONS(2721), 36, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + anon_sym___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, - ACTIONS(2563), 5, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [8321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2730), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(716), 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(2561), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(2728), 40, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -82630,10 +86645,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, @@ -82643,8 +86659,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, @@ -82654,36 +86668,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25257] = 11, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [8377] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + STATE(776), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2567), 5, + ACTIONS(2734), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(626), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(2565), 9, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2732), 38, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -82691,10 +86700,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, @@ -82704,8 +86714,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, @@ -82715,21 +86723,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [25329] = 3, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [8437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 6, + STATE(775), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2738), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 42, + anon_sym_COLON, + ACTIONS(2736), 38, 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [8497] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(781), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, + ACTIONS(2742), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2740), 38, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82763,22 +86835,18 @@ 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25385] = 5, + [8557] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2577), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2575), 7, + STATE(767), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(2746), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82786,11 +86854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2573), 35, + ACTIONS(2744), 38, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82799,6 +86865,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, @@ -82820,17 +86890,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25444] = 5, + [8617] = 11, ACTIONS(3), 1, sym_comment, - STATE(769), 1, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2750), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(647), 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(2748), 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(51), 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(55), 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, + [8689] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(774), 1, sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2582), 7, + ACTIONS(2754), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82838,7 +86970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2580), 37, + ACTIONS(2752), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -82874,27 +87006,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25503] = 5, + [8749] = 11, ACTIONS(3), 1, sym_comment, - STATE(773), 1, - sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2586), 7, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2758), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(739), 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(2756), 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(51), 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(55), 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, + [8821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2762), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(2584), 37, + ACTIONS(2760), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -82928,17 +87120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25562] = 5, + [8877] = 5, ACTIONS(3), 1, sym_comment, - STATE(738), 1, + STATE(763), 1, sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2590), 7, + ACTIONS(2766), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -82946,7 +87139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2588), 37, + ACTIONS(2764), 38, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -82982,17 +87175,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25621] = 5, + [8937] = 11, ACTIONS(3), 1, sym_comment, - STATE(751), 1, - sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2594), 7, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2770), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(749), 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(2768), 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(51), 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(55), 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, + [9009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2774), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83000,9 +87250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2592), 37, + ACTIONS(2772), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83036,17 +87288,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25680] = 5, + [9064] = 3, ACTIONS(3), 1, sym_comment, - STATE(755), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2598), 7, + ACTIONS(2778), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83054,9 +87302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2596), 37, + ACTIONS(2776), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83090,17 +87340,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25739] = 5, + [9119] = 3, ACTIONS(3), 1, sym_comment, - STATE(757), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2602), 7, + ACTIONS(2782), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83108,9 +87354,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2600), 37, + ACTIONS(2780), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83144,17 +87392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25798] = 5, + [9174] = 3, ACTIONS(3), 1, sym_comment, - STATE(758), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2606), 7, + ACTIONS(2786), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83162,9 +87406,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2604), 37, + ACTIONS(2784), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83198,17 +87444,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25857] = 5, + [9229] = 3, ACTIONS(3), 1, sym_comment, - STATE(760), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2610), 7, + ACTIONS(2790), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83216,9 +87458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2608), 37, + ACTIONS(2788), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83252,17 +87496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25916] = 5, + [9284] = 3, ACTIONS(3), 1, sym_comment, - STATE(735), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2614), 7, + ACTIONS(2794), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83270,9 +87510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2612), 37, + ACTIONS(2792), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83306,17 +87548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [25975] = 5, + [9339] = 3, ACTIONS(3), 1, sym_comment, - STATE(763), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2618), 7, + ACTIONS(2798), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83324,9 +87562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2616), 37, + ACTIONS(2796), 40, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, anon_sym___cdecl, @@ -83360,12 +87600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26034] = 3, + [9394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 7, + ACTIONS(2802), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83373,7 +87614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2620), 39, + ACTIONS(2800), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83411,12 +87652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26088] = 3, + [9449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 7, + ACTIONS(2806), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83424,7 +87666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2624), 39, + ACTIONS(2804), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83462,19 +87704,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26142] = 5, + [9504] = 3, ACTIONS(3), 1, sym_comment, - STATE(742), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2632), 4, + ACTIONS(2810), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2808), 40, + 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_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2630), 7, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [9559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2814), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83482,7 +87770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2628), 34, + ACTIONS(2812), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83495,6 +87783,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, @@ -83516,18 +87808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26200] = 5, + [9614] = 3, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2636), 7, + ACTIONS(2818), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83535,7 +87822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2634), 34, + ACTIONS(2816), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83548,6 +87835,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, @@ -83569,11 +87860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26258] = 3, + [9669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2642), 7, + ACTIONS(2822), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83581,7 +87874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2640), 39, + ACTIONS(2820), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83619,19 +87912,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26312] = 5, + [9724] = 3, ACTIONS(3), 1, sym_comment, - STATE(737), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2648), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2646), 7, + ACTIONS(2826), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83639,7 +87926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2644), 34, + ACTIONS(2824), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83652,6 +87939,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, @@ -83673,11 +87964,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26370] = 3, + [9779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 7, + ACTIONS(2830), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83685,7 +87978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2650), 39, + ACTIONS(2828), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83723,19 +88016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26424] = 5, + [9834] = 3, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2656), 7, + ACTIONS(2834), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83743,7 +88030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2654), 34, + ACTIONS(2832), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83756,59 +88043,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [26482] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2660), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2658), 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, @@ -83830,18 +88068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26540] = 5, + [9889] = 3, ACTIONS(3), 1, sym_comment, - STATE(764), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2666), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2664), 7, + ACTIONS(2838), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83849,7 +88082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2662), 34, + ACTIONS(2836), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83862,59 +88095,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [26598] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(765), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2672), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2670), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2668), 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, @@ -83936,18 +88120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26656] = 5, + [9944] = 3, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2676), 7, + ACTIONS(2842), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83955,7 +88134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2674), 34, + ACTIONS(2840), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -83968,6 +88147,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, @@ -83989,11 +88172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26714] = 3, + [9999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 7, + ACTIONS(2846), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84001,7 +88186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2678), 39, + ACTIONS(2844), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84039,12 +88224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26768] = 3, + [10054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 7, + ACTIONS(2850), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84052,7 +88238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2682), 39, + ACTIONS(2848), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84090,12 +88276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26822] = 3, + [10109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 7, + ACTIONS(2854), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84103,7 +88290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2686), 39, + ACTIONS(2852), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84141,12 +88328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26876] = 3, + [10164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 7, + ACTIONS(2858), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84154,7 +88342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2690), 39, + ACTIONS(2856), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84192,66 +88380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [26930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2573), 1, - sym_primitive_type, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2577), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2697), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2694), 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [26990] = 3, + [10219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2702), 7, + ACTIONS(2862), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84259,7 +88394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2700), 39, + ACTIONS(2860), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84297,12 +88432,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27044] = 3, + [10274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2706), 7, + ACTIONS(2866), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84310,7 +88446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2704), 39, + ACTIONS(2864), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84348,12 +88484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27098] = 3, + [10329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 7, + ACTIONS(2870), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84361,7 +88498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2708), 39, + ACTIONS(2868), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84399,66 +88536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [27152] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_LPAREN2, - STATE(762), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1780), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1778), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1762), 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27212] = 3, + [10384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 7, + ACTIONS(2874), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84466,7 +88550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2715), 39, + ACTIONS(2872), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84504,12 +88588,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27266] = 3, + [10439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 7, + ACTIONS(2878), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84517,7 +88602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2719), 39, + ACTIONS(2876), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84555,12 +88640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27320] = 3, + [10494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2725), 7, + ACTIONS(2882), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84568,7 +88654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2723), 39, + ACTIONS(2880), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84606,20 +88692,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27374] = 3, + [10549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 7, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2721), 2, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + ACTIONS(2725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2887), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2727), 39, + ACTIONS(2884), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84632,10 +88728,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, @@ -84657,12 +88749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27428] = 3, + [10610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 7, + ACTIONS(2892), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84670,7 +88761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2731), 39, + ACTIONS(2890), 40, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84708,12 +88799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [27482] = 3, + [10665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 7, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2896), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84721,7 +88820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2735), 39, + ACTIONS(2894), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -84734,10 +88833,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, @@ -84759,37 +88854,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [27536] = 3, + [10723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1360), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2739), 39, + ACTIONS(1358), 45, + aux_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___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, @@ -84810,40 +88900,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27590] = 5, + [10777] = 3, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2745), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1372), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2743), 34, + ACTIONS(1370), 45, + aux_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___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, @@ -84864,36 +88951,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27648] = 3, + [10831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1388), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2747), 39, + ACTIONS(1386), 45, + aux_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___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, @@ -84914,40 +89002,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27702] = 5, + [10885] = 3, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2753), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1406), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2751), 34, + ACTIONS(1404), 45, + aux_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___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, @@ -84968,39 +89053,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27760] = 5, + [10939] = 3, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2638), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2757), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1410), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2755), 34, + ACTIONS(1408), 45, + aux_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___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, @@ -85021,36 +89104,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27818] = 3, + [10993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1442), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2759), 39, + ACTIONS(1440), 45, + aux_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___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, @@ -85071,40 +89155,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27872] = 5, + [11047] = 3, ACTIONS(3), 1, sym_comment, - STATE(741), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2767), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2765), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2902), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2763), 34, + ACTIONS(2900), 45, + aux_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___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, @@ -85125,36 +89206,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27930] = 3, + [11101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2771), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2906), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2769), 39, + ACTIONS(2904), 45, + aux_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___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, @@ -85175,37 +89257,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [27984] = 3, + [11155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2910), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2773), 39, + ACTIONS(2908), 45, + aux_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___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, @@ -85226,37 +89308,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28038] = 3, + [11209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2646), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2914), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2644), 39, + ACTIONS(2912), 45, + aux_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___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, @@ -85277,37 +89359,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28092] = 3, + [11263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2918), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2777), 39, + ACTIONS(2916), 45, + aux_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___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, @@ -85328,37 +89410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28146] = 3, + [11317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2922), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2781), 39, + ACTIONS(2920), 45, + aux_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___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, @@ -85379,37 +89461,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28200] = 3, + [11371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2787), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2926), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2785), 39, + ACTIONS(2924), 45, + aux_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___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, @@ -85430,37 +89512,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28254] = 3, + [11425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2930), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2789), 39, + ACTIONS(2928), 45, + aux_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___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, @@ -85481,14 +89563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [28308] = 3, + [11479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2934), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 44, + ACTIONS(2932), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -85528,17 +89614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28361] = 3, + [11533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2938), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 44, + ACTIONS(2936), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -85578,17 +89665,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28414] = 3, + [11587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2942), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 44, + ACTIONS(2940), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -85628,91 +89716,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28467] = 8, + [11641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_EQ, - ACTIONS(1790), 1, - anon_sym_COLON, - STATE(621), 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(1786), 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(1770), 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(1764), 15, + STATE(785), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2944), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2866), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_STAR, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2864), 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_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [28530] = 3, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [11699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + STATE(811), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2950), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2948), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 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_COLON, + ACTIONS(2946), 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___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, @@ -85733,36 +89827,39 @@ 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, - [28583] = 3, + [11757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, + STATE(812), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2956), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2954), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 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_COLON, + ACTIONS(2952), 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___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, @@ -85783,17 +89880,13 @@ 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, - [28636] = 3, + [11815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2960), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2813), 44, + ACTIONS(2958), 45, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -85833,40 +89926,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [28689] = 12, + [11869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2817), 1, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2964), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2962), 34, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2563), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(716), 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(2561), 8, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -85874,9 +89963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -85886,8 +89973,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, @@ -85897,121 +89982,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [28760] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [11927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_EQ, - ACTIONS(1788), 1, - anon_sym_COLON, - STATE(621), 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(1786), 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(1770), 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(1764), 15, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2968), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_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, - [28823] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(2823), 1, anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1367), 1, - sym__declarator, - STATE(1398), 1, - sym__abstract_declarator, - STATE(1452), 1, - sym_parameter_list, - STATE(1984), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2821), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2825), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2966), 34, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(926), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(939), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2827), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, - anon_sym___extension__, + anon_sym___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, @@ -86021,31 +90035,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [28914] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [11985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2972), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2833), 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_COLON, + ACTIONS(2970), 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___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, @@ -86066,91 +90090,40 @@ 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, - [28967] = 8, + [12043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_EQ, - ACTIONS(1784), 1, - anon_sym_COLON, - STATE(621), 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(1786), 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(1770), 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(1764), 15, - anon_sym_COMMA, + ACTIONS(2974), 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, + STATE(809), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1889), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1356), 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_COLON, + ACTIONS(1876), 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___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, @@ -86171,71 +90144,48 @@ 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, - [29083] = 22, + [12103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(2823), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1366), 1, - sym__declarator, - STATE(1423), 1, - sym__abstract_declarator, - STATE(1452), 1, - sym_parameter_list, - STATE(1984), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(2837), 2, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2979), 7, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2839), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2977), 34, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - STATE(784), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(927), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, - anon_sym___extension__, + anon_sym___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, @@ -86245,35 +90195,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29174] = 12, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [12161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(1126), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2841), 1, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2983), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(35), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2981), 34, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2563), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(716), 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(2561), 8, + anon_sym___declspec, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -86281,9 +90229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - sym_identifier, - ACTIONS(47), 10, - anon_sym_extern, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -86293,8 +90239,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, @@ -86304,86 +90248,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29245] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + [12219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_EQ, - ACTIONS(1794), 1, - anon_sym_COLON, - STATE(621), 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(1786), 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(1770), 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(1764), 15, + STATE(807), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2989), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2987), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_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, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [29308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1362), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 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_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2985), 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___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, @@ -86404,36 +90303,92 @@ 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, - [29361] = 3, + [12277] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 1, + STATE(808), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2995), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2993), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1270), 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_COLON, + ACTIONS(2991), 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, + [12335] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2898), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(2999), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2997), 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, @@ -86454,27 +90409,23 @@ 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, - [29414] = 8, + [12393] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(1893), 1, anon_sym_EQ, - ACTIONS(1792), 1, + ACTIONS(1895), 1, anon_sym_COLON, - STATE(621), 1, + STATE(639), 1, sym_string_literal, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1786), 10, + ACTIONS(1897), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86485,7 +90436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1770), 12, + ACTIONS(1884), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86498,7 +90449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1764), 15, + ACTIONS(1878), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86514,22 +90465,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29477] = 8, + [12456] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(1893), 1, anon_sym_EQ, - ACTIONS(2843), 1, + ACTIONS(1908), 1, anon_sym_COLON, - STATE(621), 1, + STATE(639), 1, sym_string_literal, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1786), 10, + ACTIONS(1897), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86540,7 +90491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1770), 12, + ACTIONS(1884), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86553,7 +90504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1764), 15, + ACTIONS(1878), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -86562,84 +90513,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1286), 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___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, - sym_identifier, - [29593] = 12, + [12519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2845), 1, + ACTIONS(3001), 1, anon_sym_SEMI, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2563), 2, + ACTIONS(2770), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(716), 7, + STATE(749), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86647,7 +90548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2561), 8, + ACTIONS(2768), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -86656,7 +90557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86667,7 +90568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86678,190 +90579,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29664] = 3, + [12590] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1290), 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___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, - sym_identifier, - [29717] = 3, + ACTIONS(1893), 1, + anon_sym_EQ, + ACTIONS(1906), 1, + anon_sym_COLON, + STATE(639), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1897), 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(1884), 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(1878), 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, + [12653] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1318), 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___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(1916), 1, + anon_sym_LPAREN2, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, sym_identifier, - [29770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2849), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2847), 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___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(3007), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1392), 1, + sym__declarator, + STATE(1455), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + STATE(2044), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2853), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2851), 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(3005), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3009), 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(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(829), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(961), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -86871,34 +90703,27 @@ 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, - [29876] = 12, + [12744] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(1126), 1, + ACTIONS(1210), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2855), 1, + ACTIONS(3017), 1, anon_sym_SEMI, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2563), 2, + ACTIONS(2770), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(716), 7, + STATE(749), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -86906,7 +90731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2561), 8, + ACTIONS(2768), 8, anon_sym___based, anon_sym___cdecl, anon_sym___clrcall, @@ -86915,7 +90740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, sym_identifier, - ACTIONS(47), 10, + ACTIONS(51), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -86926,7 +90751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -86937,76 +90762,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [29947] = 3, + [12815] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_EQ, + ACTIONS(1902), 1, + anon_sym_COLON, + STATE(639), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1897), 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(1884), 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(1878), 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, + [12878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 1, + ACTIONS(3026), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2857), 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(3019), 3, 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, sym_identifier, - [30000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2863), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2861), 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(3029), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3022), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3024), 32, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87032,31 +90865,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [30053] = 3, + [12937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, + ACTIONS(3038), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2865), 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(3031), 3, anon_sym___attribute__, anon_sym___attribute, + sym_identifier, + ACTIONS(3041), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3034), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3036), 32, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -87082,64 +90918,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [30106] = 18, + [12996] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2873), 1, - anon_sym_AMP_AMP, - ACTIONS(2875), 1, - anon_sym_PIPE, - ACTIONS(2877), 1, - anon_sym_CARET, - ACTIONS(2879), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, + ACTIONS(1893), 1, anon_sym_EQ, - ACTIONS(2869), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2881), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2883), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2885), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2871), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 18, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, + ACTIONS(3043), 1, + anon_sym_COLON, + STATE(639), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1897), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87150,59 +90949,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30188] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2875), 1, + ACTIONS(1884), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2877), 1, anon_sym_CARET, - ACTIONS(2879), 1, anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2869), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2881), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2883), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2871), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(1878), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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, + [13059] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3045), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2770), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(749), 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(2768), 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(51), 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(55), 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, + [13130] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_EQ, + ACTIONS(1904), 1, + anon_sym_COLON, + STATE(639), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1897), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87213,58 +91063,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30268] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2877), 1, - anon_sym_CARET, - ACTIONS(2879), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(1884), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2883), 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(2885), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2887), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2871), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(1878), 15, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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, + [13193] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(1210), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3047), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(2770), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(749), 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(2768), 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(51), 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(55), 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, + [13264] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, + anon_sym_LPAREN2, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3007), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1388), 1, + sym__declarator, + STATE(1441), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + STATE(2044), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3049), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(3051), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(960), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 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, + [13355] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, + anon_sym_EQ, + STATE(639), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3055), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87275,116 +91244,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30346] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2879), 1, - anon_sym_AMP, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(1884), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2883), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2885), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2871), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2471), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1878), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [30422] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [13415] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + ACTIONS(3061), 1, + anon_sym_AMP_AMP, + ACTIONS(3063), 1, + anon_sym_PIPE, + ACTIONS(3065), 1, + anon_sym_CARET, + ACTIONS(3067), 1, + anon_sym_AMP, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(2643), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, + ACTIONS(3069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2883), 2, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, + ACTIONS(3073), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2887), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2871), 3, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2645), 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_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, @@ -87396,55 +91337,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [30496] = 13, + [13497] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + ACTIONS(3085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3087), 1, + anon_sym_AMP_AMP, + ACTIONS(3089), 1, + anon_sym_PIPE, + ACTIONS(3091), 1, + anon_sym_CARET, + ACTIONS(3093), 1, + anon_sym_AMP, + ACTIONS(3103), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(3079), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2883), 2, + ACTIONS(3095), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2887), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2871), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2471), 21, + ACTIONS(3077), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87456,87 +91403,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30568] = 11, + [13583] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2887), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2871), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 7, + ACTIONS(2643), 11, aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2471), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - sym_identifier, - [30636] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2871), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 9, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -87545,7 +91434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2645), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -87569,61 +91458,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30702] = 20, + [13647] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(3087), 1, anon_sym_AMP_AMP, - ACTIONS(2875), 1, + ACTIONS(3089), 1, anon_sym_PIPE, - ACTIONS(2877), 1, + ACTIONS(3091), 1, anon_sym_CARET, - ACTIONS(2879), 1, + ACTIONS(3093), 1, anon_sym_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(2643), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2883), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2887), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2891), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2871), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2889), 16, + ACTIONS(2645), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87635,61 +91522,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30788] = 20, + [13729] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, - anon_sym_AMP_AMP, - ACTIONS(2875), 1, + ACTIONS(3089), 1, anon_sym_PIPE, - ACTIONS(2877), 1, + ACTIONS(3091), 1, anon_sym_CARET, - ACTIONS(2879), 1, + ACTIONS(3093), 1, anon_sym_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(2643), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2883), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2887), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2899), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2871), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2897), 16, + ACTIONS(2645), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -87701,58 +91585,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30874] = 17, + [13809] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, - anon_sym_PIPE, - ACTIONS(2907), 1, + ACTIONS(3091), 1, anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3093), 1, anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(2643), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(2645), 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, @@ -87764,55 +91646,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30954] = 14, + sym_identifier, + [13887] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + ACTIONS(3093), 1, + anon_sym_AMP, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, + ACTIONS(2643), 4, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2645), 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, @@ -87824,59 +91707,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31028] = 19, + sym_identifier, + [13963] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, - anon_sym_AMP_AMP, - ACTIONS(2875), 1, - anon_sym_PIPE, - ACTIONS(2877), 1, - anon_sym_CARET, - ACTIONS(2879), 1, - anon_sym_AMP, - ACTIONS(2893), 1, - anon_sym_PIPE_PIPE, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2883), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2887), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2921), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2871), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2919), 17, + ACTIONS(2643), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2645), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -87889,54 +91768,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [31112] = 13, + [14037] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2913), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 5, + ACTIONS(2643), 5, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 21, + ACTIONS(2645), 21, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -87948,52 +91826,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31184] = 11, + sym_identifier, + [14109] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2917), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 7, + ACTIONS(2643), 7, + aux_sym_preproc_elif_token1, 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(2645), 23, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88005,133 +91883,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2923), 3, - anon_sym___attribute__, - anon_sym___attribute, - sym_identifier, - ACTIONS(2933), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(2926), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2928), 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, - [31310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2942), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2935), 3, - anon_sym___attribute__, - anon_sym___attribute, sym_identifier, - ACTIONS(2945), 4, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(2938), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2940), 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, - [31368] = 10, + [14177] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2903), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 9, + ACTIONS(2643), 9, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88139,21 +91915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2645), 23, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -88165,58 +91939,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31434] = 16, + sym_identifier, + [14243] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2907), 1, + ACTIONS(3085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3087), 1, + anon_sym_AMP_AMP, + ACTIONS(3089), 1, + anon_sym_PIPE, + ACTIONS(3091), 1, anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3093), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - anon_sym_PIPE, - anon_sym___attribute, + ACTIONS(3107), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2903), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 19, + ACTIONS(3105), 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, + 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, @@ -88227,115 +92005,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31512] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(2956), 1, - anon_sym_COLON, - STATE(746), 1, - sym_attribute_specifier, - STATE(874), 1, - sym_enumerator_list, - ACTIONS(2951), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2949), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2947), 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, - [31574] = 19, + [14329] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, + ACTIONS(3085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3087), 1, + anon_sym_AMP_AMP, + ACTIONS(3089), 1, anon_sym_PIPE, - ACTIONS(2907), 1, + ACTIONS(3091), 1, anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3093), 1, anon_sym_AMP, - ACTIONS(2958), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2960), 1, - anon_sym_AMP_AMP, - STATE(668), 1, + ACTIONS(3103), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3081), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3097), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3101), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2921), 2, - anon_sym___attribute, + ACTIONS(3111), 2, + aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2903), 3, + ACTIONS(3083), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2919), 17, + ACTIONS(3109), 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, @@ -88346,55 +92071,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31658] = 18, + sym_identifier, + [14415] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, + ACTIONS(3063), 1, anon_sym_PIPE, - ACTIONS(2907), 1, + ACTIONS(3065), 1, anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2960), 1, - anon_sym_AMP_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, + ACTIONS(2643), 2, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2901), 2, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3073), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 18, + ACTIONS(2645), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -88410,20 +92135,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31740] = 7, + [14495] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3057), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3069), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3071), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3073), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2643), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, anon_sym_EQ, - STATE(621), 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(2964), 10, + ACTIONS(2645), 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, @@ -88434,91 +92195,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1770), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + [14569] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3087), 1, + anon_sym_AMP_AMP, + ACTIONS(3089), 1, anon_sym_PIPE, + ACTIONS(3091), 1, anon_sym_CARET, + ACTIONS(3093), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, anon_sym_DOT, - ACTIONS(1764), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3081), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3095), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3097), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3099), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3101), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3115), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(3083), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3113), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31800] = 20, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + sym_identifier, + [14653] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, - anon_sym_PIPE, - ACTIONS(2907), 1, - anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2958), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2960), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3073), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2968), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2903), 3, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2966), 16, + ACTIONS(2643), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2645), 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, @@ -88529,62 +92321,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31886] = 20, + [14729] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, - anon_sym_PIPE, - ACTIONS(2907), 1, + ACTIONS(3065), 1, anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2958), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2960), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2891), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2901), 2, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3073), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(2643), 3, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2889), 16, + ACTIONS(2645), 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, @@ -88595,26 +92383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31972] = 9, + [14807] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2903), 3, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 11, + ACTIONS(2643), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -88626,7 +92414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2645), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -88650,52 +92438,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32036] = 15, + [14871] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2901), 2, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2913), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2915), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, + ACTIONS(2643), 7, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2645), 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, @@ -88711,61 +92495,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32112] = 20, + [14939] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2873), 1, + ACTIONS(3061), 1, anon_sym_AMP_AMP, - ACTIONS(2875), 1, + ACTIONS(3063), 1, anon_sym_PIPE, - ACTIONS(2877), 1, + ACTIONS(3065), 1, anon_sym_CARET, - ACTIONS(2879), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2893), 1, + ACTIONS(3117), 1, anon_sym_PIPE_PIPE, - ACTIONS(2895), 1, + ACTIONS(3119), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2869), 2, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2881), 2, + ACTIONS(3069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2883), 2, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2885), 2, + ACTIONS(3073), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2887), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2968), 2, - aux_sym_preproc_elif_token1, + ACTIONS(3111), 2, + anon_sym___attribute, anon_sym_EQ, - ACTIONS(2871), 3, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2966), 16, + ACTIONS(3109), 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, @@ -88776,50 +92561,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32198] = 9, + [15025] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(668), 1, + ACTIONS(3061), 1, + anon_sym_AMP_AMP, + ACTIONS(3063), 1, + anon_sym_PIPE, + ACTIONS(3065), 1, + anon_sym_CARET, + ACTIONS(3067), 1, + anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3119), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2871), 3, + ACTIONS(3057), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3069), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3071), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3073), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3107), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 11, - aux_sym_preproc_elif_token1, + ACTIONS(3105), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15111] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3073), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2643), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, anon_sym_EQ, - ACTIONS(2471), 23, + ACTIONS(2645), 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_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, @@ -88831,57 +92686,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32262] = 20, + [15183] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2905), 1, + ACTIONS(3061), 1, + anon_sym_AMP_AMP, + ACTIONS(3063), 1, anon_sym_PIPE, - ACTIONS(2907), 1, + ACTIONS(3065), 1, anon_sym_CARET, - ACTIONS(2909), 1, + ACTIONS(3067), 1, anon_sym_AMP, - ACTIONS(2958), 1, + ACTIONS(3117), 1, anon_sym_PIPE_PIPE, - ACTIONS(2960), 1, - anon_sym_AMP_AMP, - ACTIONS(2970), 1, + ACTIONS(3119), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2899), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(2901), 2, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2911), 2, + ACTIONS(3069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2913), 2, + ACTIONS(3071), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2915), 2, + ACTIONS(3073), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2917), 2, + ACTIONS(3075), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2903), 3, + ACTIONS(3079), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2897), 16, + ACTIONS(3077), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -88898,29 +92752,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32348] = 5, + [15269] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2549), 1, - anon_sym_EQ, - ACTIONS(2551), 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(1770), 13, - aux_sym_preproc_elif_token1, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3057), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3059), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2643), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -88928,46 +92782,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1764), 19, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(2645), 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_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15335] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_AMP_AMP, + ACTIONS(3063), 1, + anon_sym_PIPE, + ACTIONS(3065), 1, + anon_sym_CARET, + ACTIONS(3067), 1, + anon_sym_AMP, + ACTIONS(3117), 1, + anon_sym_PIPE_PIPE, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [32403] = 7, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3057), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3069), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3071), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3073), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3075), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3115), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(3059), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3113), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(3128), 1, anon_sym_LBRACE, - STATE(772), 1, + ACTIONS(3130), 1, + anon_sym_COLON, + STATE(760), 1, sym_attribute_specifier, - STATE(883), 1, + STATE(917), 1, sym_enumerator_list, - ACTIONS(2976), 2, + ACTIONS(3125), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2974), 6, + ACTIONS(3123), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2972), 32, + ACTIONS(3121), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -89000,12 +92927,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [32462] = 5, + [15481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(2441), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2439), 41, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [15532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, anon_sym_EQ, - ACTIONS(1786), 10, + ACTIONS(2697), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -89016,7 +92991,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1770), 13, + ACTIONS(1884), 13, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1878), 19, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_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, + sym_identifier, + [15587] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1893), 1, + anon_sym_EQ, + ACTIONS(1897), 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(1884), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -89030,7 +93055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(1764), 19, + ACTIONS(1878), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -89050,78 +93075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [32517] = 21, + [15642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1817), 1, - anon_sym_STAR, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(2831), 1, - anon_sym_LBRACK, - ACTIONS(2837), 1, - anon_sym_RPAREN, - STATE(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1291), 1, - sym__declarator, - STATE(1423), 1, - sym__abstract_declarator, - STATE(1452), 1, - sym_parameter_list, - STATE(1900), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(840), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(946), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1300), 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, - [32603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 2, + ACTIONS(2481), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(2292), 40, + ACTIONS(2479), 41, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89157,98 +93117,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32653] = 21, + [15693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(3128), 1, + anon_sym_LBRACE, + STATE(784), 1, + sym_attribute_specifier, + STATE(918), 1, + sym_enumerator_list, + ACTIONS(3136), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3134), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1817), 1, anon_sym_STAR, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(2821), 1, - anon_sym_RPAREN, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1293), 1, - sym__declarator, - STATE(1398), 1, - sym__abstract_declarator, - STATE(1452), 1, - sym_parameter_list, - STATE(1900), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(939), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(947), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1300), 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, - [32739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2258), 2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2256), 40, + ACTIONS(3132), 32, 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89269,18 +93174,14 @@ 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, - [32789] = 3, + [15752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 2, + ACTIONS(2918), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2801), 39, + ACTIONS(2916), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -89315,23 +93216,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32838] = 3, + [15802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 2, + ACTIONS(2699), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2793), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(632), 1, + sym_string_literal, + ACTIONS(3139), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2693), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -89361,18 +93265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32887] = 3, + [15856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 2, + ACTIONS(2906), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2805), 39, + ACTIONS(2904), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -89407,18 +93312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32936] = 3, + [15906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 2, + ACTIONS(2914), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2809), 39, + ACTIONS(2912), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -89453,18 +93359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [32985] = 3, + [15956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 2, + ACTIONS(2922), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2813), 39, + ACTIONS(2920), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -89499,20 +93406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33034] = 3, + [16006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2926), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2851), 40, + anon_sym_RBRACE, + ACTIONS(2924), 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, @@ -89545,68 +93453,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33083] = 5, + [16056] = 3, ACTIONS(3), 1, sym_comment, - STATE(747), 1, - sym_attribute_specifier, - ACTIONS(2983), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2981), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2979), 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, - [33136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2859), 1, + ACTIONS(2910), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2857), 40, + anon_sym_RBRACE, + ACTIONS(2908), 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, @@ -89639,17 +93500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33185] = 3, + [16106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(2960), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2861), 40, + ACTIONS(2958), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89685,20 +93547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33234] = 3, + [16156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 1, + ACTIONS(2930), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 40, + anon_sym_RBRACE, + ACTIONS(2928), 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, @@ -89731,20 +93594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33283] = 3, + [16206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 1, + ACTIONS(2934), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 40, + anon_sym_RBRACE, + ACTIONS(2932), 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, @@ -89777,17 +93641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33332] = 3, + [16256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, + ACTIONS(2902), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2865), 40, + ACTIONS(2900), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89823,17 +93688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33381] = 3, + [16306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2906), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2833), 40, + ACTIONS(2904), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89869,17 +93735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33430] = 3, + [16356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 1, + ACTIONS(2910), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2847), 40, + ACTIONS(2908), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89915,17 +93782,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33479] = 3, + [16406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2914), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2793), 40, + ACTIONS(2912), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89961,17 +93829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33528] = 3, + [16456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(2918), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2805), 40, + ACTIONS(2916), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90007,17 +93876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33577] = 3, + [16506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, + ACTIONS(2922), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 40, + ACTIONS(2920), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90053,17 +93923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33626] = 3, + [16556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 1, + ACTIONS(2926), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2813), 40, + ACTIONS(2924), 41, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90099,20 +93970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33675] = 3, + [16606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, + ACTIONS(2930), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1356), 39, + ACTIONS(2928), 41, aux_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, @@ -90145,20 +94017,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33724] = 3, + [16656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 2, + ACTIONS(2934), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1360), 39, + ACTIONS(2932), 41, aux_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, @@ -90191,20 +94064,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33773] = 3, + [16706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 2, + ACTIONS(2938), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2857), 39, + ACTIONS(2936), 41, aux_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, @@ -90237,20 +94111,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33822] = 3, + [16756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(2942), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1286), 39, + ACTIONS(2940), 41, aux_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, @@ -90283,18 +94158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33871] = 3, + [16806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 2, + ACTIONS(1360), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1290), 39, + ACTIONS(1358), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90329,18 +94205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33920] = 3, + [16856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 2, + ACTIONS(1372), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1318), 39, + ACTIONS(1370), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90375,20 +94252,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [33969] = 3, + [16906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 1, + ACTIONS(1388), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1356), 40, + anon_sym_RBRACE, + ACTIONS(1386), 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, @@ -90421,20 +94299,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34018] = 3, + [16956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(1320), 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, + ACTIONS(1318), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 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, + ACTIONS(1318), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1410), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 40, + anon_sym_RBRACE, + ACTIONS(1408), 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, @@ -90467,20 +94440,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34067] = 3, + [17106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 1, + ACTIONS(2938), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1270), 40, + anon_sym_RBRACE, + ACTIONS(2936), 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, @@ -90513,20 +94487,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34116] = 3, + [17156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 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, + ACTIONS(1338), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1340), 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, + ACTIONS(1338), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1224), 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, + ACTIONS(1222), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1224), 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, + ACTIONS(1222), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1442), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1286), 40, + anon_sym_RBRACE, + ACTIONS(1440), 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, @@ -90559,20 +94722,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34165] = 3, + [17406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(1220), 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, + ACTIONS(1218), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 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, + ACTIONS(1254), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 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, + ACTIONS(1254), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 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, + ACTIONS(1266), 23, + 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_static_assert, + anon_sym__Static_assert, + anon_sym_typeof, + anon_sym_typeof_unqual, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [17606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1290), 40, + anon_sym_RBRACE, + ACTIONS(2900), 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, @@ -90605,20 +94957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34214] = 3, + [17656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 1, + ACTIONS(2942), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1318), 40, + anon_sym_RBRACE, + ACTIONS(2940), 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, @@ -90651,20 +95004,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34263] = 3, + [17706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2853), 2, + ACTIONS(1360), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2851), 39, + ACTIONS(1358), 41, aux_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, @@ -90697,25 +95051,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34312] = 5, + [17756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(1372), 1, anon_sym_LBRACK_LBRACK, - STATE(493), 1, - sym_string_literal, - ACTIONS(2986), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2569), 34, + ACTIONS(1370), 41, + aux_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__, @@ -90745,38 +95098,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34365] = 5, + [17806] = 3, ACTIONS(3), 1, sym_comment, - STATE(753), 1, - sym_attribute_specifier, - ACTIONS(2992), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2990), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1388), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2988), 32, + ACTIONS(1386), 41, + aux_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___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, @@ -90797,16 +95145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [34418] = 3, + [17856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 2, + ACTIONS(1406), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2865), 39, + ACTIONS(1404), 41, aux_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, @@ -90839,20 +95192,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34467] = 3, + [17906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 2, + ACTIONS(1410), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2833), 39, + ACTIONS(1408), 41, aux_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, @@ -90885,25 +95239,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34516] = 5, + [17956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(1442), 1, anon_sym_LBRACK_LBRACK, - STATE(488), 1, - sym_string_literal, - ACTIONS(2986), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2569), 34, + ACTIONS(1440), 41, + aux_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__, @@ -90933,18 +95286,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34569] = 3, + [18006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 2, + ACTIONS(2960), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2847), 39, + ACTIONS(2958), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90979,23 +95333,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34618] = 3, + [18056] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, + anon_sym_LPAREN2, + ACTIONS(1918), 1, + anon_sym_STAR, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3015), 1, + anon_sym_LBRACK, + ACTIONS(3049), 1, + anon_sym_RPAREN, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1323), 1, + sym__declarator, + STATE(1441), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + STATE(1944), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(999), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 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, + [18142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 2, + ACTIONS(2699), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2861), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(631), 1, + sym_string_literal, + ACTIONS(3139), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2693), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91025,23 +95447,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34667] = 3, + [18196] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, + anon_sym_LPAREN2, + ACTIONS(1918), 1, + anon_sym_STAR, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3005), 1, + anon_sym_RPAREN, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1322), 1, + sym__declarator, + STATE(1455), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + STATE(1944), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(909), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1000), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 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, + [18282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 2, + ACTIONS(2699), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2797), 39, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(629), 1, + sym_string_literal, + ACTIONS(3139), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2693), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91071,25 +95561,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34716] = 5, + [18336] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(2699), 1, anon_sym_LBRACK_LBRACK, - STATE(484), 1, + STATE(630), 1, sym_string_literal, - ACTIONS(2986), 5, + ACTIONS(3139), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2569), 34, + ACTIONS(2693), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -91119,25 +95610,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34769] = 5, + [18390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, + ACTIONS(1406), 2, anon_sym_LBRACK_LBRACK, - STATE(491), 1, - sym_string_literal, - ACTIONS(2986), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2569), 34, + anon_sym_RBRACE, + ACTIONS(1404), 40, + 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__, @@ -91167,27 +95657,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [34822] = 5, + [18440] = 5, ACTIONS(3), 1, sym_comment, - STATE(768), 1, + STATE(761), 1, sym_attribute_specifier, - ACTIONS(2999), 2, + ACTIONS(3145), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2997), 6, + ACTIONS(3143), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2995), 32, + ACTIONS(3141), 32, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -91220,27 +95711,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [34875] = 3, + [18493] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1270), 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___declspec, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1380), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(920), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1017), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3154), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + ACTIONS(55), 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, + [18574] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(782), 1, + sym_attribute_specifier, + ACTIONS(3160), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3158), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3156), 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, @@ -91261,79 +95820,33 @@ 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, - [34924] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, - anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - STATE(668), 1, - sym_argument_list, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2485), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2487), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [34983] = 3, + [18627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 3, + STATE(780), 1, + sym_attribute_specifier, + ACTIONS(3167), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3165), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3006), 36, + ACTIONS(3163), 32, 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___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, @@ -91355,60 +95868,121 @@ 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, - [35030] = 18, + [18680] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3148), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3150), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3152), 1, anon_sym_STAR, - ACTIONS(3018), 1, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1365), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1015), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_primitive_type, - STATE(711), 1, + ACTIONS(55), 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, + [18761] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, + STATE(1377), 1, sym__type_declarator, - STATE(1920), 1, + STATE(2057), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(903), 2, + STATE(968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1005), 2, + STATE(1022), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3016), 4, + ACTIONS(3154), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1415), 5, + STATE(1431), 6, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(49), 10, + sym_primitive_type, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -91419,73 +95993,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [35107] = 9, + [18842] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - STATE(668), 1, - sym_argument_list, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2469), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3152), 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_EQ, - ACTIONS(2471), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [35166] = 9, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1377), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(919), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1022), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + ACTIONS(55), 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, + [18923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3172), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3170), 37, + 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, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [18971] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2477), 13, + ACTIONS(2667), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -91499,7 +96130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2479), 19, + ACTIONS(2669), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91519,108 +96150,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35225] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2712), 1, - anon_sym_LPAREN2, - ACTIONS(3020), 1, - anon_sym_COMMA, - ACTIONS(3023), 1, - anon_sym_RPAREN, - STATE(762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1594), 1, - aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1778), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(1780), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1762), 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, - anon_sym_inline, - anon_sym___inline, - anon_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, - [35284] = 21, + [19030] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2968), 1, - anon_sym_EQ, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3032), 1, - anon_sym_AMP_AMP, - ACTIONS(3034), 1, - anon_sym_PIPE, - ACTIONS(3036), 1, + ACTIONS(3182), 1, anon_sym_CARET, - ACTIONS(3038), 1, + ACTIONS(3184), 1, anon_sym_AMP, - ACTIONS(3048), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(2643), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2966), 12, + ACTIONS(2645), 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, @@ -91631,45 +96208,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35367] = 10, + [19105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2643), 1, + anon_sym_EQ, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + ACTIONS(3182), 1, + anon_sym_CARET, + ACTIONS(3184), 1, + anon_sym_AMP, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 10, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3190), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(3180), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2645), 14, 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, @@ -91682,54 +96268,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35428] = 19, + [19184] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, + ACTIONS(2643), 1, anon_sym_EQ, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3032), 1, - anon_sym_AMP_AMP, - ACTIONS(3034), 1, - anon_sym_PIPE, - ACTIONS(3036), 1, + ACTIONS(3182), 1, anon_sym_CARET, - ACTIONS(3038), 1, + ACTIONS(3184), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3196), 1, + anon_sym_PIPE, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 14, + ACTIONS(2645), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -91742,52 +96327,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35507] = 17, + [19261] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3036), 1, - anon_sym_CARET, - ACTIONS(3038), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3180), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2643), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 15, + anon_sym_EQ, + ACTIONS(2645), 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, @@ -91800,48 +96379,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35582] = 16, + [19324] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3038), 1, + ACTIONS(3184), 1, anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, + ACTIONS(2643), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2471), 15, + ACTIONS(2645), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91857,47 +96436,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35655] = 15, + [19397] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, + ACTIONS(2643), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2471), 15, + ACTIONS(2645), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91913,44 +96492,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35726] = 14, + [19468] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 4, + ACTIONS(2643), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2471), 17, + ACTIONS(2645), 17, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91968,40 +96547,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35795] = 12, + [19537] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2469), 6, + ACTIONS(2643), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(2645), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92021,48 +96600,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35860] = 11, + [19602] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3107), 1, + anon_sym_EQ, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + ACTIONS(3182), 1, + anon_sym_CARET, + ACTIONS(3184), 1, + anon_sym_AMP, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE, + ACTIONS(3198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3200), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2469), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3186), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(3190), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2471), 19, + ACTIONS(3180), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3105), 12, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92073,56 +96662,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [35923] = 21, + [19685] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_LPAREN2, + ACTIONS(3202), 1, + anon_sym_COMMA, + ACTIONS(3205), 1, + anon_sym_RPAREN, + STATE(809), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1659), 1, + aux_sym__old_style_parameter_list_repeat1, + ACTIONS(1889), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1876), 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, + anon_sym_inline, + anon_sym___inline, + anon_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, + [19744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2891), 1, + ACTIONS(3111), 1, anon_sym_EQ, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3032), 1, - anon_sym_AMP_AMP, - ACTIONS(3034), 1, - anon_sym_PIPE, - ACTIONS(3036), 1, + ACTIONS(3182), 1, anon_sym_CARET, - ACTIONS(3038), 1, + ACTIONS(3184), 1, anon_sym_AMP, - ACTIONS(3048), 1, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE, + ACTIONS(3198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3200), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2889), 12, + ACTIONS(3109), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -92135,58 +96774,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36006] = 21, + [19827] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2899), 1, + ACTIONS(3115), 1, anon_sym_EQ, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3032), 1, - anon_sym_AMP_AMP, - ACTIONS(3034), 1, - anon_sym_PIPE, - ACTIONS(3036), 1, + ACTIONS(3182), 1, anon_sym_CARET, - ACTIONS(3038), 1, + ACTIONS(3184), 1, anon_sym_AMP, - ACTIONS(3048), 1, - anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE, + ACTIONS(3198), 1, + anon_sym_PIPE_PIPE, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2897), 12, + ACTIONS(3113), 13, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92197,57 +96835,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36089] = 20, + [19908] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2921), 1, + ACTIONS(3079), 1, anon_sym_EQ, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3030), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3032), 1, - anon_sym_AMP_AMP, - ACTIONS(3034), 1, - anon_sym_PIPE, - ACTIONS(3036), 1, + ACTIONS(3182), 1, anon_sym_CARET, - ACTIONS(3038), 1, + ACTIONS(3184), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3194), 1, + anon_sym_AMP_AMP, + ACTIONS(3196), 1, + anon_sym_PIPE, + ACTIONS(3198), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3200), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3178), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, + ACTIONS(3186), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3042), 2, + ACTIONS(3188), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, + ACTIONS(3190), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3046), 2, + ACTIONS(3192), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, + ACTIONS(3180), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2919), 13, + ACTIONS(3077), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -92258,138 +96897,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36170] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1341), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(939), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1008), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 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(1415), 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, - [36247] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1341), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(908), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1008), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 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(1415), 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, - [36324] = 8, + [19991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2441), 13, + ACTIONS(2623), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92403,7 +96924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2443), 21, + ACTIONS(2625), 21, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92425,23 +96946,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [36381] = 9, + [20048] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2451), 13, + ACTIONS(2671), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92455,7 +96976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2453), 19, + ACTIONS(2673), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92475,23 +96996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36440] = 9, + [20107] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2481), 13, + ACTIONS(2633), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92505,7 +97026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2483), 19, + ACTIONS(2635), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92525,112 +97046,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36499] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(711), 1, - sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1326), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(939), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1009), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 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(1415), 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, - [36576] = 18, + [20166] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_EQ, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3034), 1, - anon_sym_PIPE, - ACTIONS(3036), 1, - anon_sym_CARET, - ACTIONS(3038), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3026), 2, + ACTIONS(3180), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2643), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3040), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3042), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3044), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3046), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3028), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2471), 15, + anon_sym_EQ, + ACTIONS(2645), 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, @@ -92643,10 +97097,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36653] = 3, + [20227] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 14, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + STATE(697), 1, + sym_argument_list, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2651), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92660,17 +97127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2459), 24, + ACTIONS(2653), 19, 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, @@ -92683,15 +97147,46 @@ 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, - [36699] = 5, + [20286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + STATE(697), 1, + sym_argument_list, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2643), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2964), 10, + ACTIONS(2645), 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, @@ -92702,7 +97197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1770), 13, + [20345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2639), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92715,8 +97213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(1764), 14, + ACTIONS(2641), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -92728,35 +97227,46 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36749] = 7, + [20391] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 1, + ACTIONS(3211), 1, anon_sym_LPAREN2, - STATE(762), 1, + ACTIONS(3215), 1, + anon_sym_LBRACK, + STATE(809), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1778), 2, - anon_sym_STAR, - anon_sym_LBRACK_LBRACK, - ACTIONS(3050), 2, + ACTIONS(1889), 2, anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(3208), 2, anon_sym_RPAREN, - ACTIONS(1780), 4, + anon_sym_LBRACK_LBRACK, + ACTIONS(1891), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1762), 28, + ACTIONS(1876), 27, 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, @@ -92778,139 +97288,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - [36803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1206), 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(1208), 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, - [36849] = 3, + [20447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 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(1180), 19, + ACTIONS(2974), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + STATE(809), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1889), 2, 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, - [36895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1202), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LBRACK_LBRACK, + ACTIONS(3218), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1876), 28, 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___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_alignas, + anon_sym__Alignas, 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, - [36941] = 3, + [20501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 14, + ACTIONS(2675), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92925,7 +97353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2475), 24, + ACTIONS(2677), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -92950,10 +97378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [36987] = 3, + [20547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2465), 14, + ACTIONS(2647), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -92968,7 +97396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2467), 24, + ACTIONS(2649), 24, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -92993,291 +97421,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [37033] = 3, + [20593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 19, + ACTIONS(3053), 1, + anon_sym_EQ, + ACTIONS(3055), 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(1884), 13, 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(1236), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(1878), 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, - 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, - [37079] = 3, + anon_sym_DASH_GT, + [20643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1202), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1340), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1338), 35, 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___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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + 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, - [37125] = 3, + [20688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1234), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1320), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1318), 35, 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___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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1236), 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, - [37171] = 3, + [20733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1178), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1224), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1222), 35, 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___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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1180), 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, + [20778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1224), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1222), 35, 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___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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1240), 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, + [20823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1238), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1220), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1218), 35, 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___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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(1240), 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] = 8, + [20868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, - anon_sym_LPAREN2, - ACTIONS(3060), 1, - anon_sym_LBRACK, - STATE(762), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1778), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3053), 2, - anon_sym_RPAREN, + ACTIONS(1256), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1254), 35, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1256), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1780), 4, + anon_sym_LBRACE, + ACTIONS(1254), 35, + 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, - ACTIONS(1762), 27, + anon_sym_static, + anon_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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [20958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1266), 35, 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_static, anon_sym_auto, anon_sym_register, @@ -93298,97 +97796,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21003] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, sym_identifier, - [37365] = 3, + ACTIONS(3221), 1, + anon_sym_RPAREN, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1808), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1174), 19, + ACTIONS(1893), 1, + anon_sym_EQ, + ACTIONS(3223), 1, + anon_sym_SEMI, + ACTIONS(1897), 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(1884), 12, 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(1176), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1878), 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, - 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, - [37411] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [21131] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, + sym_identifier, + ACTIONS(3225), 1, + anon_sym_RPAREN, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1808), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21208] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1916), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(2823), 1, + ACTIONS(3007), 1, anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1355), 1, + STATE(1389), 1, sym__declarator, - STATE(1424), 1, + STATE(1456), 1, sym__abstract_declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - STATE(1984), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3063), 2, + ACTIONS(3227), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3065), 2, + ACTIONS(3229), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93399,53 +98020,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [37486] = 18, + [21283] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1916), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(2823), 1, + ACTIONS(3007), 1, anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1367), 1, + STATE(1388), 1, sym__declarator, - STATE(1398), 1, + STATE(1441), 1, sym__abstract_declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - STATE(1984), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2821), 2, + ACTIONS(3049), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2825), 2, + ACTIONS(3051), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -93456,58 +98077,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [37561] = 6, + [21358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_EQ, - ACTIONS(3067), 1, - anon_sym_SEMI, - ACTIONS(1786), 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(1770), 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(1764), 13, + ACTIONS(1340), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1338), 35, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1320), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1318), 35, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21448] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, + sym_identifier, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1249), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3237), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3235), 35, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21566] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(2062), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_enum, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1909), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21640] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(2062), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_enum, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1879), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(982), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21714] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3248), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3245), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3243), 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_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [37612] = 3, + anon_sym_COLON, + ACTIONS(3241), 22, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [21766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1236), 2, + ACTIONS(3253), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1234), 34, + ACTIONS(3251), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93535,38 +98448,173 @@ 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_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [21810] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, + sym_identifier, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1282), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21884] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, + sym_identifier, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1818), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [21958] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, sym_identifier, - [37656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1238), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1254), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93576,38 +98624,53 @@ 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, + [22032] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, sym_identifier, - [37700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1240), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1238), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1714), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93617,20 +98680,12 @@ 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, - [37744] = 3, + [22106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 2, + ACTIONS(3255), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1202), 34, + ACTIONS(3036), 35, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -93660,36 +98715,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, anon_sym_enum, anon_sym_struct, anon_sym_union, sym_identifier, - [37788] = 3, + [22150] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1204), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1202), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, + sym_identifier, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1255), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93699,38 +98777,53 @@ 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, + [22224] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, sym_identifier, - [37832] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1178), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1268), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93740,38 +98833,53 @@ 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, + [22298] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, sym_identifier, - [37876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1180), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1178), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1270), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93781,38 +98889,53 @@ 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, + [22372] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, sym_identifier, - [37920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1236), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1234), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1273), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93822,38 +98945,53 @@ 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, + [22446] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, sym_identifier, - [37964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1208), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1206), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1145), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + STATE(1275), 1, + sym__type_definition_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(985), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93863,38 +99001,53 @@ 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, + [22520] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, sym_identifier, - [38008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1176), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(1174), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1808), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93904,44 +99057,53 @@ 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, + [22594] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, sym_identifier, - [38052] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3076), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(939), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3073), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3071), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3069), 21, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1117), 1, + sym_type_specifier, + STATE(1816), 1, + sym_type_descriptor, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(986), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93951,34 +99113,51 @@ 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, - [38103] = 3, + [22668] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3079), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(2062), 1, + sym_identifier, + ACTIONS(3239), 1, + anon_sym_enum, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1112), 1, + sym_type_specifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93988,93 +99167,53 @@ 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, - [38146] = 18, + [22739] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(55), 1, anon_sym_const, - ACTIONS(1940), 1, + ACTIONS(2064), 1, anon_sym_LPAREN2, - ACTIONS(1942), 1, + ACTIONS(2066), 1, anon_sym_STAR, - ACTIONS(2827), 1, + ACTIONS(3011), 1, sym_ms_restrict_modifier, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1398), 1, + STATE(1441), 1, sym__abstract_declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - ACTIONS(3085), 2, + ACTIONS(3259), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3087), 2, + ACTIONS(3261), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3089), 2, + ACTIONS(3263), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(939), 2, + STATE(968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1086), 2, + STATE(1118), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2821), 3, + ACTIONS(3049), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3083), 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, - [38219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2928), 34, + ACTIONS(3257), 9, 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, @@ -94083,59 +99222,52 @@ 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, - [38262] = 18, + [22812] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(55), 1, anon_sym_const, - ACTIONS(1940), 1, + ACTIONS(2064), 1, anon_sym_LPAREN2, - ACTIONS(1942), 1, + ACTIONS(2066), 1, anon_sym_STAR, - ACTIONS(2827), 1, + ACTIONS(3011), 1, sym_ms_restrict_modifier, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1423), 1, + STATE(1455), 1, sym__abstract_declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - ACTIONS(3085), 2, + ACTIONS(3259), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3087), 2, + ACTIONS(3261), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3089), 2, + ACTIONS(3263), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(941), 2, + STATE(983), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1098), 2, + STATE(1126), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2837), 3, + ACTIONS(3005), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3083), 9, + ACTIONS(3257), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -94145,30 +99277,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38335] = 3, + [22885] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3093), 34, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, + anon_sym_struct, + ACTIONS(67), 1, + anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(3231), 1, + sym_identifier, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1109), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1147), 1, + sym_type_specifier, + STATE(1158), 1, + sym_primitive_type, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3233), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 10, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94178,55 +99331,102 @@ 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, + [22956] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(65), 1, anon_sym_struct, + ACTIONS(67), 1, anon_sym_union, + ACTIONS(1512), 1, + anon_sym_auto, + ACTIONS(1514), 1, + anon_sym_enum, + ACTIONS(2062), 1, sym_identifier, - [38378] = 16, + STATE(715), 1, + sym_alignas_qualifier, + STATE(803), 1, + sym_primitive_type, + STATE(1041), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1112), 1, + sym_type_specifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1510), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(778), 6, + sym_auto_type, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(55), 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, + [23027] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1319), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1323), 1, + sym__declarator, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(939), 2, + STATE(996), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1106), 2, + STATE(1139), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1382), 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(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94237,49 +99437,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38446] = 17, + [23095] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1817), 1, - anon_sym_STAR, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(2821), 1, - anon_sym_RPAREN, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(711), 1, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + STATE(715), 1, sym_alignas_qualifier, - STATE(1293), 1, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1323), 1, sym__declarator, - STATE(1398), 1, - sym__abstract_declarator, - STATE(1452), 1, - sym_parameter_list, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1139), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1300), 5, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94290,49 +99489,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38516] = 17, + [23163] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, - anon_sym_LPAREN2, - ACTIONS(1817), 1, - anon_sym_STAR, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(2831), 1, - anon_sym_LBRACK, - ACTIONS(3063), 1, - anon_sym_RPAREN, - STATE(711), 1, + ACTIONS(3271), 1, + anon_sym_LPAREN2, + ACTIONS(3273), 1, + anon_sym_STAR, + STATE(715), 1, sym_alignas_qualifier, - STATE(1294), 1, - sym__declarator, - STATE(1424), 1, - sym__abstract_declarator, - STATE(1452), 1, - sym_parameter_list, - STATE(1900), 1, + STATE(1021), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1350), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + ACTIONS(3013), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1141), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(3011), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94343,48 +99541,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38586] = 16, + [23231] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1294), 1, + STATE(1322), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(939), 2, + STATE(988), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1111), 2, + STATE(1142), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94395,48 +99593,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38654] = 16, + [23299] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3275), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1291), 1, + STATE(1388), 1, sym__declarator, - STATE(1900), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(950), 2, + STATE(968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1107), 2, + STATE(1131), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94447,48 +99645,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38722] = 16, + [23367] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3275), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1293), 1, + STATE(1388), 1, sym__declarator, - STATE(1900), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(939), 2, + STATE(993), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, + STATE(1131), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94499,48 +99697,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38790] = 16, + [23435] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3275), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1322), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1389), 1, + sym__declarator, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(939), 2, + STATE(968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1110), 2, + STATE(1132), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1382), 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(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94551,48 +99749,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38858] = 16, + [23503] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3275), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1293), 1, + STATE(1392), 1, sym__declarator, - STATE(1900), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(948), 2, + STATE(991), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1109), 2, + STATE(1140), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94603,48 +99801,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38926] = 16, + [23571] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1318), 1, + STATE(1348), 1, sym__field_declarator, - STATE(1990), 1, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(945), 2, + STATE(998), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1108), 2, + STATE(1138), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1382), 5, + STATE(1414), 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(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94655,48 +99853,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [38994] = 16, + [23639] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1367), 1, + STATE(1321), 1, sym__declarator, - STATE(1984), 1, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(939), 2, + STATE(968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1104), 2, + STATE(1135), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94707,48 +99905,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39062] = 16, + [23707] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1367), 1, - sym__declarator, - STATE(1984), 1, + STATE(1349), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(956), 2, + STATE(989), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1104), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94759,48 +99957,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39130] = 16, + [23775] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, + STATE(1021), 1, sym_ms_unaligned_ptr_modifier, - STATE(1355), 1, - sym__declarator, - STATE(1984), 1, + STATE(1349), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, + ACTIONS(3013), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(939), 2, + STATE(968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1105), 2, + STATE(1136), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, + ACTIONS(3011), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94811,48 +100009,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39198] = 16, + [23843] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, + ACTIONS(1916), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(1918), 1, anon_sym_STAR, - STATE(711), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3015), 1, + anon_sym_LBRACK, + ACTIONS(3227), 1, + anon_sym_RPAREN, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1366), 1, + STATE(1321), 1, sym__declarator, - STATE(1984), 1, + STATE(1456), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(954), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1102), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1300), 5, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94863,48 +100062,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39266] = 16, + [23913] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3097), 1, - sym_identifier, - ACTIONS(3099), 1, + ACTIONS(1916), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(1918), 1, anon_sym_STAR, - STATE(711), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3015), 1, + anon_sym_LBRACK, + ACTIONS(3049), 1, + anon_sym_RPAREN, + STATE(715), 1, sym_alignas_qualifier, - STATE(989), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1319), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1323), 1, + sym__declarator, + STATE(1441), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(2829), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(951), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1106), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2827), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1382), 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(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -94915,296 +100115,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [39334] = 19, + [23983] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym___attribute, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 8, + ACTIONS(2643), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(2645), 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, - [39407] = 14, + [24048] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3297), 1, + anon_sym_CARET, + ACTIONS(3299), 1, + anon_sym_AMP, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(2643), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3125), 2, + ACTIONS(3301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(2471), 12, + ACTIONS(2645), 9, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, - [39470] = 11, + sym_identifier, + [24117] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3299), 1, + anon_sym_AMP, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(2643), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3293), 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(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3303), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(2645), 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, - [39527] = 21, + sym_identifier, + [24184] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2891), 1, - anon_sym___attribute, - ACTIONS(3113), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2889), 6, + ACTIONS(2643), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2645), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [39604] = 21, + 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, + [24249] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3139), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - ACTIONS(3141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 1, - anon_sym_AMP_AMP, - ACTIONS(3145), 1, - anon_sym_PIPE, - ACTIONS(3147), 1, - anon_sym_CARET, - ACTIONS(3149), 1, - anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2966), 6, + ACTIONS(2643), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2645), 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, - [39681] = 10, + [24312] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3137), 2, + ACTIONS(3291), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 7, + ACTIONS(3307), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2643), 5, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2471), 16, + ACTIONS(2645), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -95217,884 +100412,987 @@ 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_QMARK, sym_identifier, - [39736] = 19, + [24371] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3139), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - ACTIONS(3143), 1, - anon_sym_AMP_AMP, - ACTIONS(3145), 1, - anon_sym_PIPE, - ACTIONS(3147), 1, - anon_sym_CARET, - ACTIONS(3149), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(2643), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3157), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2471), 8, + ACTIONS(2645), 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, - [39809] = 18, + [24428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, + ACTIONS(3107), 1, aux_sym_preproc_elif_token1, - ACTIONS(3139), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - ACTIONS(3145), 1, - anon_sym_PIPE, - ACTIONS(3147), 1, + ACTIONS(3297), 1, anon_sym_CARET, - ACTIONS(3149), 1, + ACTIONS(3299), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3311), 1, + anon_sym_AMP_AMP, + ACTIONS(3313), 1, + anon_sym_PIPE, + ACTIONS(3315), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 9, + ACTIONS(3105), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [39880] = 17, + [24505] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(3111), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3295), 1, anon_sym_SLASH, - ACTIONS(3147), 1, + ACTIONS(3297), 1, anon_sym_CARET, - ACTIONS(3149), 1, + ACTIONS(3299), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3311), 1, + anon_sym_AMP_AMP, + ACTIONS(3313), 1, + anon_sym_PIPE, + ACTIONS(3315), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3135), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 9, + ACTIONS(3109), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [39949] = 16, + [24582] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(3107), 1, + anon_sym___attribute, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3149), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3327), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3135), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 10, + ACTIONS(3105), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - sym_identifier, - [40016] = 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [24659] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3297), 1, + anon_sym_CARET, + ACTIONS(3299), 1, + anon_sym_AMP, + ACTIONS(3309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3311), 1, + anon_sym_AMP_AMP, + ACTIONS(3313), 1, + anon_sym_PIPE, + ACTIONS(3315), 1, + anon_sym_QMARK, + ACTIONS(3331), 1, + aux_sym_preproc_elif_token1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3307), 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(3329), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [40081] = 14, + [24736] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(2643), 1, + anon_sym___attribute, + ACTIONS(3281), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3153), 2, + ACTIONS(3283), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3289), 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(2645), 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_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, - sym_identifier, - [40144] = 12, + [24809] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(3111), 1, + anon_sym___attribute, + ACTIONS(3281), 1, anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3137), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3157), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 14, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, anon_sym_QMARK, - sym_identifier, - [40203] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3139), 1, - anon_sym_SLASH, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2469), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 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, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_QMARK, - sym_identifier, - [40260] = 21, + ACTIONS(3109), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [24886] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2891), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3139), 1, + ACTIONS(2643), 1, + anon_sym___attribute, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 1, - anon_sym_AMP_AMP, - ACTIONS(3145), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3147), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3149), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2889), 6, + ACTIONS(2645), 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [24957] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, sym_identifier, - [40337] = 21, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1356), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + ACTIONS(55), 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, + [25022] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2899), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3139), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 1, - anon_sym_AMP_AMP, - ACTIONS(3145), 1, - anon_sym_PIPE, - ACTIONS(3147), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3149), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(2643), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2897), 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, - [40414] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_SLASH, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(2471), 16, + ACTIONS(2645), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [40469] = 18, + [25091] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1377), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + ACTIONS(55), 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, + [25156] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2469), 1, - anon_sym___attribute, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(2643), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 9, + ACTIONS(2645), 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, - [40540] = 17, + [25223] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3115), 1, + anon_sym___attribute, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3119), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 9, + ACTIONS(3113), 7, 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, - [40609] = 21, + [25298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2899), 1, + ACTIONS(3079), 1, anon_sym___attribute, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2897), 6, + ACTIONS(3077), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [40686] = 16, + [25375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3335), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3333), 27, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [25416] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1365), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + ACTIONS(55), 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, + [25481] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3121), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 10, + ACTIONS(2643), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(2645), 12, 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, - [40753] = 20, + [25544] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2921), 1, - anon_sym___attribute, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2919), 7, + ACTIONS(2643), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(2645), 14, 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_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [40828] = 20, + [25603] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2921), 1, + ACTIONS(3115), 1, aux_sym_preproc_elif_token1, - ACTIONS(3139), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - ACTIONS(3141), 1, + ACTIONS(3297), 1, + anon_sym_CARET, + ACTIONS(3299), 1, + anon_sym_AMP, + ACTIONS(3309), 1, anon_sym_PIPE_PIPE, - ACTIONS(3143), 1, + ACTIONS(3311), 1, anon_sym_AMP_AMP, - ACTIONS(3145), 1, + ACTIONS(3313), 1, anon_sym_PIPE, - ACTIONS(3147), 1, - anon_sym_CARET, - ACTIONS(3149), 1, - anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3157), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2919), 7, + ACTIONS(3113), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96102,203 +101400,225 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_QMARK, sym_identifier, - [40903] = 21, + [25678] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2968), 1, - anon_sym___attribute, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(2643), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + anon_sym___attribute, + ACTIONS(2645), 16, + 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, - ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2966), 6, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [40980] = 21, + anon_sym_QMARK, + [25735] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3139), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3141), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 1, - anon_sym_AMP_AMP, - ACTIONS(3145), 1, - anon_sym_PIPE, - ACTIONS(3147), 1, - anon_sym_CARET, - ACTIONS(3149), 1, - anon_sym_AMP, - ACTIONS(3159), 1, - anon_sym_QMARK, - ACTIONS(3163), 1, - aux_sym_preproc_elif_token1, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3135), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3137), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3151), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3153), 2, + ACTIONS(2643), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3155), 2, + anon_sym___attribute, + ACTIONS(2645), 16, + 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, - ACTIONS(3157), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 6, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [25790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3339), 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_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3337), 27, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [41057] = 15, + [25831] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3079), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3295), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3297), 1, + anon_sym_CARET, + ACTIONS(3299), 1, + anon_sym_AMP, + ACTIONS(3309), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3311), 1, + anon_sym_AMP_AMP, + ACTIONS(3313), 1, + anon_sym_PIPE, + ACTIONS(3315), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3303), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2469), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(2471), 10, + ACTIONS(3077), 6, 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, - [41122] = 12, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [25908] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3295), 1, anon_sym_SLASH, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2469), 5, + ACTIONS(2643), 7, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym___attribute, - ACTIONS(2471), 14, + ACTIONS(2645), 16, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -96306,224 +101626,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - [41181] = 3, + sym_identifier, + [25963] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 13, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(2643), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3295), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3297), 1, + anon_sym_CARET, + ACTIONS(3299), 1, anon_sym_AMP, + ACTIONS(3311), 1, + anon_sym_AMP_AMP, + ACTIONS(3313), 1, + anon_sym_PIPE, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3291), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3293), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3301), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3303), 2, 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(3167), 19, + ACTIONS(3305), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3307), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2645), 8, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + sym_identifier, + [26036] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(2643), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3295), 1, + anon_sym_SLASH, + ACTIONS(3297), 1, + anon_sym_CARET, + ACTIONS(3299), 1, + anon_sym_AMP, + ACTIONS(3313), 1, + anon_sym_PIPE, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3291), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3293), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3301), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3303), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3305), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3307), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - [41221] = 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(1938), 1, - sym_identifier, - ACTIONS(3169), 1, - anon_sym_enum, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1077), 1, - sym_type_specifier, - STATE(1919), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1007), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41285] = 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(1720), 1, - anon_sym_enum, - ACTIONS(1938), 1, - sym_identifier, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1077), 1, - sym_type_specifier, - STATE(1813), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1006), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41349] = 3, + ACTIONS(2645), 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, + [26107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3171), 26, - anon_sym___extension__, + ACTIONS(3341), 13, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, 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, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - [41389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 6, + ACTIONS(3343), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3175), 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, - [41429] = 3, + anon_sym_PERCENT, + anon_sym_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, + [26147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 13, + ACTIONS(3345), 13, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -96537,7 +101791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3181), 19, + ACTIONS(3347), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -96557,304 +101811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [41469] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1270), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41533] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1265), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41597] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1273), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41661] = 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(1720), 1, - anon_sym_enum, - ACTIONS(1938), 1, - sym_identifier, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1077), 1, - sym_type_specifier, - STATE(1782), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1006), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41725] = 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(1720), 1, - anon_sym_enum, - ACTIONS(1938), 1, - sym_identifier, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1077), 1, - sym_type_specifier, - STATE(1812), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1006), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41789] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1267), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41853] = 3, + [26187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3189), 13, + ACTIONS(3349), 13, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -96868,7 +101828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3191), 19, + ACTIONS(3351), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -96888,108 +101848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [41893] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1266), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [41957] = 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(1938), 1, - sym_identifier, - ACTIONS(3169), 1, - anon_sym_enum, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1077), 1, - sym_type_specifier, - STATE(1944), 1, - sym_type_descriptor, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1007), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [42021] = 3, + [26227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3193), 13, + ACTIONS(3353), 13, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, @@ -97003,7 +101865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3195), 19, + ACTIONS(3355), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -97023,238 +101885,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [42061] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1271), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [42125] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1274), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [42189] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_struct, - ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, - sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1114), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1115), 1, - sym_type_specifier, - STATE(1272), 1, - sym__type_definition_type, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1010), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [42253] = 14, + [26267] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 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(711), 1, - sym_alignas_qualifier, - STATE(1341), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 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(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(3357), 1, + anon_sym_COLON, + STATE(760), 1, + sym_attribute_specifier, + STATE(1049), 1, + sym_enumerator_list, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3123), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(3121), 20, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - [42314] = 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(1720), 1, - anon_sym_enum, - ACTIONS(1938), 1, - sym_identifier, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1093), 1, - sym_type_specifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 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, @@ -97264,91 +101921,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42375] = 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(1938), 1, - sym_identifier, - ACTIONS(3169), 1, - anon_sym_enum, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1026), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1093), 1, - sym_type_specifier, - ACTIONS(51), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1718), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(770), 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, - [42436] = 14, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [26316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3128), 1, + anon_sym_LBRACE, + STATE(784), 1, + sym_attribute_specifier, + STATE(1044), 1, + sym_enumerator_list, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3134), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3014), 1, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1326), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3016), 4, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3132), 20, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1415), 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, @@ -97358,43 +101961,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42497] = 14, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [26363] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3010), 1, - sym_identifier, - ACTIONS(3012), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, + anon_sym_SLASH, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3361), 1, + anon_sym___attribute, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3277), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3279), 2, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(711), 1, + anon_sym_PERCENT, + ACTIONS(3283), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3287), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3289), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3359), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [26437] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(3363), 1, + sym_identifier, + STATE(715), 1, sym_alignas_qualifier, - STATE(1323), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, + STATE(814), 1, + sym_primitive_type, + STATE(815), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2582), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3016), 4, + ACTIONS(2580), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(49), 10, + ACTIONS(2573), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2575), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -97405,79 +102063,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [42558] = 14, + [26493] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_struct, ACTIONS(59), 1, - anon_sym_union, - ACTIONS(1720), 1, - anon_sym_enum, - ACTIONS(3183), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(3365), 1, sym_identifier, - ACTIONS(3187), 1, - sym_primitive_type, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1114), 1, + STATE(805), 1, + sym_primitive_type, + STATE(1137), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1116), 1, - sym_type_specifier, - ACTIONS(51), 2, + ACTIONS(2547), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(1040), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3185), 4, + ACTIONS(3367), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(770), 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, - [42619] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_attribute_specifier, - STATE(1068), 1, - sym_enumerator_list, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2974), 6, + ACTIONS(2538), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2972), 19, + ACTIONS(2540), 10, 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, @@ -97487,137 +102107,128 @@ 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, - [42665] = 21, + [26549] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3199), 3, + ACTIONS(3371), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, - [42739] = 21, + [26623] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3203), 1, - anon_sym___attribute, - STATE(668), 1, + ACTIONS(3373), 1, + anon_sym_COMMA, + ACTIONS(3375), 1, + anon_sym_RBRACE, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + STATE(1614), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3201), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [42813] = 8, + [26698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(3205), 1, - anon_sym_COLON, - STATE(746), 1, + STATE(780), 1, sym_attribute_specifier, - STATE(1021), 1, - sym_enumerator_list, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2949), 5, + ACTIONS(3165), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(2947), 19, + anon_sym_COLON, + ACTIONS(3163), 20, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -97635,338 +102246,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [42861] = 22, + [26739] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - ACTIONS(3131), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3207), 1, - anon_sym_COMMA, - ACTIONS(3209), 1, - anon_sym_RBRACE, - STATE(668), 1, - sym_argument_list, - STATE(1660), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [42936] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3211), 1, + ACTIONS(3377), 1, anon_sym_COMMA, - ACTIONS(3213), 1, + ACTIONS(3379), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - STATE(1568), 1, + STATE(1668), 1, aux_sym_generic_expression_repeat1, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43011] = 22, + [26814] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3215), 1, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(3217), 1, + ACTIONS(3383), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - STATE(1654), 1, + STATE(1698), 1, aux_sym_argument_list_repeat1, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43086] = 22, + [26889] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3215), 1, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(3219), 1, + ACTIONS(3385), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - STATE(1572), 1, + STATE(1660), 1, aux_sym_argument_list_repeat1, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43161] = 21, + [26964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3197), 1, + STATE(761), 1, + sym_attribute_specifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3143), 6, anon_sym_COMMA, - ACTIONS(3221), 1, - anon_sym_COLON, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3129), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43233] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, - anon_sym_SLASH, - ACTIONS(3229), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, - anon_sym_AMP_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3235), 1, - anon_sym_CARET, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2455), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2889), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3223), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3225), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3239), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3243), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [43305] = 5, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3141), 20, + 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, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [27005] = 5, ACTIONS(3), 1, sym_comment, - STATE(753), 1, + STATE(782), 1, sym_attribute_specifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(2990), 6, + ACTIONS(3158), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(2988), 19, + ACTIONS(3156), 20, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -97984,3143 +102477,3098 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [43345] = 21, + [27046] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3249), 1, + ACTIONS(3387), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43417] = 20, + [27118] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3389), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3251), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43487] = 21, + [27190] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3391), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2897), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43559] = 20, + [27262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3393), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3253), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [43629] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2510), 1, - sym_primitive_type, - ACTIONS(3255), 1, - sym_identifier, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1113), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2507), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1044), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2498), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2500), 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, - [43679] = 21, + [27334] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3259), 1, + ACTIONS(3395), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43751] = 21, + [27406] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3261), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3397), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43823] = 21, + [27478] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3263), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3399), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [43895] = 20, + [27550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3401), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3265), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [43965] = 21, + [27622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3267), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3403), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44037] = 20, + [27694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3269), 2, + ACTIONS(3405), 2, anon_sym_COMMA, - anon_sym_SEMI, - [44107] = 21, + anon_sym_RPAREN, + [27764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3271), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3077), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44179] = 21, + [27836] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3433), 1, anon_sym_COMMA, - ACTIONS(3273), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3435), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44251] = 21, + [27908] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, + anon_sym_SLASH, + STATE(697), 1, + sym_argument_list, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3409), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2643), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2645), 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, + [27960] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3275), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44323] = 20, + ACTIONS(2645), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [28028] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, - anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2919), 3, + ACTIONS(2645), 5, anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [44393] = 21, + [28094] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(2643), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, + anon_sym_SLASH, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3277), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44465] = 21, + ACTIONS(2645), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [28160] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, - anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(2643), 1, anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, + anon_sym_SLASH, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3279), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44537] = 22, + ACTIONS(2645), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [28224] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, - anon_sym_AMP_AMP, - ACTIONS(3233), 1, - anon_sym_PIPE, - ACTIONS(3235), 1, - anon_sym_CARET, - ACTIONS(3237), 1, - anon_sym_AMP, - ACTIONS(3247), 1, - anon_sym_QMARK, - ACTIONS(3281), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3283), 1, - anon_sym_RBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(2643), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44611] = 21, + ACTIONS(2645), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [28286] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, - anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, - anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3285), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(2643), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44683] = 20, + ACTIONS(2645), 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, + [28346] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, - anon_sym_AMP_AMP, - ACTIONS(3117), 1, + STATE(697), 1, + sym_argument_list, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3407), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3409), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2643), 4, anon_sym_PIPE, - ACTIONS(3119), 1, - anon_sym_CARET, - ACTIONS(3121), 1, anon_sym_AMP, - ACTIONS(3131), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2645), 10, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(668), 1, - sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, + [28402] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, + anon_sym_SLASH, + STATE(697), 1, + sym_argument_list, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(2643), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(2645), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3287), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44753] = 21, + anon_sym_RBRACK, + anon_sym_QMARK, + [28456] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3289), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3437), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [44825] = 20, + [28528] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3439), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3291), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [44895] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2547), 1, - sym_primitive_type, - ACTIONS(3293), 1, - sym_identifier, - STATE(711), 1, - sym_alignas_qualifier, - STATE(745), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2544), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2542), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2535), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2537), 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, - [44945] = 21, + [28600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3295), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3441), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45017] = 21, + [28672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3297), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3105), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45089] = 21, + [28744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3299), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3443), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45161] = 21, + [28816] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3301), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(3109), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45233] = 21, + [28888] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3303), 1, + ACTIONS(3445), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45305] = 5, + [28960] = 21, ACTIONS(3), 1, sym_comment, - STATE(747), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2981), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2627), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2979), 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, - [45345] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, - anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3447), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2966), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45417] = 21, + [29032] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3305), 1, - anon_sym_SEMI, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45489] = 20, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [29102] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3161), 2, + ACTIONS(3451), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [45559] = 11, + anon_sym_RPAREN, + [29172] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3225), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 6, + ACTIONS(3277), 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(3279), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [45611] = 21, + ACTIONS(3453), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [29242] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3307), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3455), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45683] = 21, + [29314] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3309), 1, + ACTIONS(3457), 1, anon_sym_SEMI, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45755] = 21, + [29386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3311), 1, + ACTIONS(3459), 1, anon_sym_SEMI, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [45827] = 19, + [29458] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3327), 1, + anon_sym_QMARK, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 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, - [45895] = 18, + ACTIONS(3461), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [29528] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3233), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3463), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 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, - [45961] = 18, + [29600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3235), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3465), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 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, - [46027] = 17, + [29672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(2469), 1, - anon_sym_PIPE, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3237), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, anon_sym_AMP, - STATE(668), 1, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3467), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 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, - [46091] = 16, + [29744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3469), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 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, - [46153] = 15, + [29816] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(2449), 1, + ACTIONS(2631), 1, anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, + ACTIONS(3176), 1, anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, + anon_sym_PIPE, + ACTIONS(3419), 1, + anon_sym_CARET, + ACTIONS(3421), 1, + anon_sym_AMP, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2469), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3241), 2, + ACTIONS(3423), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2471), 8, + ACTIONS(3113), 3, 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, - [46213] = 13, + [29886] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3471), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2469), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2471), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [46269] = 21, + ACTIONS(3289), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [29958] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3313), 1, + ACTIONS(3473), 1, anon_sym_COLON, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46341] = 12, + [30030] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(2449), 1, - anon_sym_DASH_GT, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3004), 1, - anon_sym_DOT, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - STATE(668), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, + anon_sym_QMARK, + ACTIONS(3369), 1, + anon_sym_COMMA, + ACTIONS(3475), 1, + anon_sym_SEMI, + STATE(697), 1, sym_argument_list, - ACTIONS(2455), 2, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2469), 4, - 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(3279), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [46395] = 21, + [30102] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3315), 1, - anon_sym_COLON, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46467] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(768), 1, - sym_attribute_specifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(2997), 6, + ACTIONS(3329), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2995), 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, - [46507] = 21, + anon_sym_RBRACE, + [30172] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(2631), 1, + anon_sym_DASH_GT, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3176), 1, + anon_sym_DOT, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3317), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3477), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3479), 1, + anon_sym_RBRACK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46579] = 21, + [30246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3197), 1, + ACTIONS(3369), 1, anon_sym_COMMA, - ACTIONS(3319), 1, - anon_sym_SEMI, - STATE(668), 1, + ACTIONS(3481), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46651] = 20, + [30318] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, - anon_sym_RBRACK, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46720] = 20, + ACTIONS(3483), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [30388] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2280), 1, + anon_sym_RBRACK, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3321), 1, - anon_sym_COLON, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46789] = 20, + [30457] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3323), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3485), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46858] = 13, + [30526] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1940), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(1942), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1452), 1, - sym_parameter_list, - STATE(1469), 1, - sym__abstract_declarator, - ACTIONS(3089), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3325), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3083), 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, - [46913] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 1, - anon_sym_RBRACK, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3487), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [46982] = 20, + [30595] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, - anon_sym_QMARK, ACTIONS(3327), 1, - anon_sym_COLON, - STATE(668), 1, + anon_sym_QMARK, + ACTIONS(3489), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47051] = 13, + [30664] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1940), 1, - anon_sym_LPAREN2, - ACTIONS(1942), 1, - anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(2288), 1, + anon_sym_RBRACK, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1452), 1, - sym_parameter_list, - STATE(1474), 1, - sym__abstract_declarator, - ACTIONS(3089), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1079), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3329), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3083), 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, - [47106] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3331), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47175] = 13, + [30733] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1940), 1, - anon_sym_LPAREN2, - ACTIONS(1942), 1, - anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(2278), 1, + anon_sym_RBRACK, + ACTIONS(2629), 1, anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1452), 1, - sym_parameter_list, - STATE(1483), 1, - sym__abstract_declarator, - ACTIONS(3089), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3333), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3083), 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, - [47230] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3335), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47299] = 20, + [30802] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2170), 1, - anon_sym_RBRACK, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3491), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47368] = 20, + [30871] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3337), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3493), 1, + anon_sym_RBRACK, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47437] = 20, + [30940] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_RBRACK, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3495), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47506] = 20, + [31009] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3339), 1, - anon_sym_RPAREN, - STATE(668), 1, + ACTIONS(3497), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47575] = 20, + [31078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3341), 1, - anon_sym_COLON, - STATE(668), 1, + ACTIONS(3499), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47644] = 13, + [31147] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2543), 1, + anon_sym___based, + ACTIONS(3501), 1, + sym_identifier, + ACTIONS(3507), 1, + aux_sym_primitive_type_token1, + ACTIONS(3510), 1, + anon_sym__BitInt, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1154), 1, + sym_primitive_type, + STATE(1160), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2538), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2547), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1128), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3504), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2540), 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, + [31202] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(55), 1, anon_sym_const, - ACTIONS(1940), 1, + ACTIONS(2064), 1, anon_sym_LPAREN2, - ACTIONS(1942), 1, + ACTIONS(2066), 1, anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1424), 1, + STATE(1481), 1, + sym_parameter_list, + STATE(1508), 1, sym__abstract_declarator, - STATE(1452), 1, + ACTIONS(3263), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3513), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3257), 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, + [31257] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_const, + ACTIONS(2064), 1, + anon_sym_LPAREN2, + ACTIONS(2066), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1481), 1, + sym_parameter_list, + STATE(1522), 1, + sym__abstract_declarator, + ACTIONS(3263), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3515), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3257), 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, + [31312] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_const, + ACTIONS(2064), 1, + anon_sym_LPAREN2, + ACTIONS(2066), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1481), 1, sym_parameter_list, - ACTIONS(3089), 2, + STATE(1524), 1, + sym__abstract_declarator, + ACTIONS(3263), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(1110), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3063), 3, + ACTIONS(3517), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3083), 9, + ACTIONS(3257), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101130,571 +105578,662 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [47699] = 20, + [31367] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2186), 1, + ACTIONS(2270), 1, anon_sym_RBRACK, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3411), 1, + anon_sym_SLASH, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, + anon_sym_AMP_AMP, + ACTIONS(3417), 1, + anon_sym_PIPE, + ACTIONS(3419), 1, + anon_sym_CARET, + ACTIONS(3421), 1, + anon_sym_AMP, + ACTIONS(3431), 1, + anon_sym_QMARK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3407), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3409), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3423), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3425), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3427), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3429), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [31436] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2276), 1, + anon_sym_RBRACK, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3413), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47768] = 20, + [31505] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3343), 1, + ACTIONS(3519), 1, anon_sym_COLON, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47837] = 20, + [31574] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2178), 1, - anon_sym_RBRACK, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3521), 1, + anon_sym_COLON, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47906] = 20, + [31643] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_const, + ACTIONS(2064), 1, + anon_sym_LPAREN2, + ACTIONS(2066), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1481), 1, + sym_parameter_list, + STATE(1516), 1, + sym__abstract_declarator, + ACTIONS(3263), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1111), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3257), 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, + [31698] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_const, + ACTIONS(2064), 1, + anon_sym_LPAREN2, + ACTIONS(2066), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1456), 1, + sym__abstract_declarator, + STATE(1481), 1, + sym_parameter_list, + ACTIONS(3263), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3227), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3257), 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, + [31753] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2282), 1, + anon_sym_RBRACK, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3413), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3345), 1, - anon_sym_RBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47975] = 20, + [31822] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2268), 1, + anon_sym_RBRACK, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3174), 1, + anon_sym_LPAREN2, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3413), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3347), 1, - anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48044] = 20, + [31891] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3349), 1, + ACTIONS(3525), 1, anon_sym_RPAREN, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48113] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_const, - ACTIONS(1940), 1, - anon_sym_LPAREN2, - ACTIONS(1942), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_LBRACK, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1452), 1, - sym_parameter_list, - STATE(1470), 1, - sym__abstract_declarator, - ACTIONS(3089), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1074), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3351), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3083), 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, - [48168] = 20, + [31960] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3413), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - ACTIONS(3353), 1, + ACTIONS(3527), 1, anon_sym_RBRACK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48237] = 20, + [32029] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - ACTIONS(3355), 1, - anon_sym_COMMA, - STATE(668), 1, + ACTIONS(3529), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48306] = 20, + [32098] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2172), 1, + ACTIONS(2246), 1, anon_sym_RBRACK, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3413), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48375] = 20, + [32167] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2182), 1, - anon_sym_RBRACK, - ACTIONS(2447), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3317), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3531), 1, + anon_sym_COMMA, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48444] = 13, + [32236] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(55), 1, anon_sym_const, - ACTIONS(1940), 1, + ACTIONS(2064), 1, anon_sym_LPAREN2, - ACTIONS(1942), 1, + ACTIONS(2066), 1, anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1398), 1, + STATE(1441), 1, sym__abstract_declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - ACTIONS(3089), 2, + ACTIONS(3263), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2821), 3, + ACTIONS(3049), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3083), 9, + ACTIONS(3257), 9, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -101704,181 +106243,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48499] = 20, + [32291] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2168), 1, + ACTIONS(2272), 1, anon_sym_RBRACK, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3413), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48568] = 20, + [32360] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2578), 1, + anon_sym___based, + ACTIONS(3533), 1, + sym_identifier, + ACTIONS(3539), 1, + aux_sym_primitive_type_token1, + ACTIONS(3542), 1, + anon_sym__BitInt, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1155), 1, + sym_primitive_type, + STATE(1159), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2573), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(2582), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2575), 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, + [32415] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2176), 1, + ACTIONS(2286), 1, anon_sym_RBRACK, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3002), 1, + ACTIONS(3174), 1, anon_sym_LPAREN2, - ACTIONS(3227), 1, + ACTIONS(3411), 1, anon_sym_SLASH, - ACTIONS(3229), 1, + ACTIONS(3413), 1, anon_sym_PIPE_PIPE, - ACTIONS(3231), 1, + ACTIONS(3415), 1, anon_sym_AMP_AMP, - ACTIONS(3233), 1, + ACTIONS(3417), 1, anon_sym_PIPE, - ACTIONS(3235), 1, + ACTIONS(3419), 1, anon_sym_CARET, - ACTIONS(3237), 1, + ACTIONS(3421), 1, anon_sym_AMP, - ACTIONS(3247), 1, + ACTIONS(3431), 1, anon_sym_QMARK, - STATE(668), 1, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3223), 2, + ACTIONS(3407), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3225), 2, + ACTIONS(3409), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3239), 2, + ACTIONS(3423), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3241), 2, + ACTIONS(3425), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3243), 2, + ACTIONS(3427), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3245), 2, + ACTIONS(3429), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48637] = 19, + [32484] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(2627), 1, anon_sym_LPAREN2, - ACTIONS(2447), 1, + ACTIONS(2629), 1, anon_sym_LBRACK, - ACTIONS(3113), 1, + ACTIONS(3281), 1, anon_sym_SLASH, - ACTIONS(3115), 1, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, anon_sym_AMP_AMP, - ACTIONS(3117), 1, + ACTIONS(3321), 1, anon_sym_PIPE, - ACTIONS(3119), 1, + ACTIONS(3323), 1, anon_sym_CARET, - ACTIONS(3121), 1, + ACTIONS(3325), 1, anon_sym_AMP, - ACTIONS(3131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3133), 1, + ACTIONS(3327), 1, anon_sym_QMARK, - STATE(668), 1, + ACTIONS(3545), 1, + anon_sym_RPAREN, + STATE(697), 1, sym_argument_list, - ACTIONS(2449), 2, + ACTIONS(2631), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2455), 2, + ACTIONS(2637), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3109), 2, + ACTIONS(3277), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3111), 2, + ACTIONS(3279), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3123), 2, + ACTIONS(3283), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3125), 2, + ACTIONS(3285), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3127), 2, + ACTIONS(3287), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3129), 2, + ACTIONS(3289), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48703] = 12, + [32553] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3275), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1367), 1, + STATE(1389), 1, sym__declarator, - STATE(1984), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -101889,12 +106472,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48755] = 4, + [32605] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3275), 1, + anon_sym_STAR, + STATE(715), 1, + sym_alignas_qualifier, + STATE(1390), 1, + sym__declarator, + STATE(2044), 1, + sym_ms_based_modifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 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, + [32657] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3223), 1, anon_sym_SEMI, - ACTIONS(1770), 7, + ACTIONS(1884), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -101902,7 +106525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(1764), 18, + ACTIONS(1878), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -101921,36 +106544,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [48791] = 12, + [32693] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(2629), 1, + anon_sym_LBRACK, + ACTIONS(3281), 1, + anon_sym_SLASH, + ACTIONS(3317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3319), 1, + anon_sym_AMP_AMP, + ACTIONS(3321), 1, + anon_sym_PIPE, + ACTIONS(3323), 1, + anon_sym_CARET, + ACTIONS(3325), 1, + anon_sym_AMP, + ACTIONS(3327), 1, + anon_sym_QMARK, + STATE(697), 1, + sym_argument_list, + ACTIONS(2631), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2637), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3277), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3279), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3283), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3285), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3287), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3289), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [32759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1355), 1, + STATE(1320), 1, sym__declarator, - STATE(1984), 1, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -101961,36 +106631,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48843] = 12, + [32811] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3107), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1359), 1, - sym__declarator, - STATE(1984), 1, + STATE(1350), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102001,36 +106671,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48895] = 12, + [32863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3097), 1, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2721), 3, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(2725), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2887), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3101), 1, anon_sym_STAR, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1322), 1, - sym__field_declarator, - STATE(1990), 1, - sym_ms_based_modifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1382), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(49), 10, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2884), 12, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102041,36 +106703,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48947] = 12, + anon_sym_alignas, + anon_sym__Alignas, + [32903] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1293), 1, - sym__declarator, - STATE(1900), 1, + STATE(1349), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(49), 10, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102081,36 +106745,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [48999] = 12, + [32955] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1319), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1321), 1, + sym__declarator, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1382), 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(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102121,36 +106785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49051] = 12, + [33007] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3275), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1294), 1, + STATE(1388), 1, sym__declarator, - STATE(1900), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102161,36 +106825,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49103] = 12, + [33059] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1317), 1, + STATE(1346), 1, sym__field_declarator, - STATE(1990), 1, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1382), 5, + STATE(1414), 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(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102201,36 +106865,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49155] = 12, + [33111] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1292), 1, + STATE(1323), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102241,35 +106905,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49207] = 11, + [33163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym___based, - ACTIONS(3357), 1, - sym_identifier, - ACTIONS(3363), 1, - sym_primitive_type, - STATE(711), 1, - sym_alignas_qualifier, - STATE(1130), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2535), 2, + ACTIONS(2686), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(2544), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3360), 4, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2691), 20, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2537), 10, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102279,27 +106931,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49256] = 6, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + [33197] = 7, ACTIONS(3), 1, sym_comment, - STATE(723), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2573), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(2577), 4, + STATE(715), 1, + sym_alignas_qualifier, + ACTIONS(57), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(3549), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(687), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3547), 8, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2697), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2694), 12, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102310,36 +106970,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - [49295] = 11, + [33238] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2503), 1, - anon_sym___based, - ACTIONS(3366), 1, - sym_identifier, - ACTIONS(3372), 1, - sym_primitive_type, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - STATE(1136), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2498), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(2507), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1112), 2, + ACTIONS(3553), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + STATE(1144), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3369), 4, + ACTIONS(3551), 8, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2500), 10, + aux_sym_primitive_type_token1, + anon_sym__BitInt, + sym_identifier, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102350,62 +107004,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49344] = 7, + [33279] = 13, ACTIONS(3), 1, sym_comment, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3377), 2, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, anon_sym_LPAREN2, + ACTIONS(3152), 1, anon_sym_STAR, - STATE(1119), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3375), 7, - anon_sym___based, + STATE(1290), 1, + sym_ms_call_modifier, + STATE(1494), 1, + sym__type_declarator, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, sym_primitive_type, - sym_identifier, - ACTIONS(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, - [49384] = 7, + [33332] = 7, ACTIONS(3), 1, sym_comment, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3381), 2, + ACTIONS(3557), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1117), 2, + STATE(1148), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3379), 7, + ACTIONS(3555), 8, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102416,29 +107078,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49424] = 7, + [33373] = 7, ACTIONS(3), 1, sym_comment, - STATE(711), 1, + STATE(715), 1, sym_alignas_qualifier, - ACTIONS(51), 2, + ACTIONS(57), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(3385), 2, + ACTIONS(3561), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(665), 2, + STATE(687), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3383), 7, + ACTIONS(3559), 8, anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - ACTIONS(49), 10, + ACTIONS(55), 10, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -102449,71 +107112,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49464] = 15, + [33414] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1916), 1, anon_sym_LPAREN2, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(2823), 1, + ACTIONS(3007), 1, anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(1321), 1, + STATE(1347), 1, sym__declarator, - STATE(1393), 1, + STATE(1408), 1, sym__abstract_declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - STATE(1984), 1, + STATE(2044), 1, sym_ms_based_modifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3387), 2, + ACTIONS(3563), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1489), 2, + STATE(1503), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [49520] = 7, + [33470] = 5, ACTIONS(3), 1, sym_comment, - STATE(711), 1, - sym_alignas_qualifier, - ACTIONS(51), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(3391), 2, + STATE(743), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2983), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(665), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3389), 7, - anon_sym___based, + ACTIONS(3565), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(49), 10, + ACTIONS(2981), 16, anon_sym___extension__, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -102523,86 +107178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, anon_sym__Nonnull, - [49560] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3010), 1, + anon_sym_alignas, + anon_sym__Alignas, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - ACTIONS(3012), 1, - anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1280), 1, - sym_ms_call_modifier, - STATE(1430), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [49609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3395), 1, - anon_sym_LPAREN2, - STATE(991), 1, - sym_preproc_argument_list, - ACTIONS(3397), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3393), 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, - [49643] = 5, + [33505] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2753), 2, + ACTIONS(2896), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3399), 4, + ACTIONS(3568), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2751), 15, + ACTIONS(2894), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102616,22 +107210,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49677] = 5, + [33540] = 5, ACTIONS(3), 1, sym_comment, - STATE(1124), 1, + STATE(1157), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2765), 2, + ACTIONS(2987), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3402), 4, + ACTIONS(3571), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2763), 15, + ACTIONS(2985), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102645,22 +107240,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49711] = 5, + [33575] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(1163), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2656), 2, + ACTIONS(2948), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3405), 4, + ACTIONS(3574), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2654), 15, + ACTIONS(2946), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102674,22 +107270,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49745] = 5, + [33610] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(1150), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2757), 2, + ACTIONS(2954), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3408), 4, + ACTIONS(3577), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2755), 15, + ACTIONS(2952), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102703,22 +107300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49779] = 5, + [33645] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(1161), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2660), 2, + ACTIONS(2993), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3411), 4, + ACTIONS(3580), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2658), 15, + ACTIONS(2991), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102732,22 +107330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49813] = 5, + [33680] = 6, ACTIONS(3), 1, sym_comment, - STATE(1122), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2664), 2, - anon_sym_LPAREN2, + ACTIONS(1889), 1, anon_sym_STAR, - ACTIONS(3414), 4, + ACTIONS(2974), 1, + anon_sym_LPAREN2, + STATE(1162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3583), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2662), 15, + ACTIONS(1876), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102761,61 +107361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [49847] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - STATE(651), 1, - sym__old_style_function_declarator, - STATE(1300), 1, - sym_function_declarator, - STATE(1316), 1, - sym_ms_call_modifier, - STATE(1356), 1, - sym__declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1606), 1, - sym_init_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 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, - [49901] = 5, + [33717] = 5, ACTIONS(3), 1, sym_comment, - STATE(1125), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2670), 2, + ACTIONS(2964), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3419), 4, + ACTIONS(3586), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2668), 15, + ACTIONS(2962), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102829,22 +107391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49935] = 5, + [33752] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(1151), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2676), 2, + ACTIONS(2866), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3422), 4, + ACTIONS(3589), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2674), 15, + ACTIONS(2864), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102858,22 +107421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [49969] = 5, + [33787] = 5, ACTIONS(3), 1, sym_comment, - STATE(1126), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2630), 2, + ACTIONS(2999), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3425), 4, + ACTIONS(3592), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2628), 15, + ACTIONS(2997), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102887,100 +107451,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [50003] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, - sym_identifier, - STATE(652), 1, - sym__old_style_function_declarator, - STATE(1300), 1, - sym_function_declarator, - STATE(1302), 1, - sym_ms_call_modifier, - STATE(1362), 1, - sym__declarator, - STATE(1447), 1, - sym__declaration_declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1575), 1, - sym_init_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 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, - [50057] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - STATE(657), 1, - sym__old_style_function_declarator, - STATE(1300), 1, - sym_function_declarator, - STATE(1310), 1, - sym_ms_call_modifier, - STATE(1364), 1, - sym__declarator, - STATE(1439), 1, - sym__declaration_declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1632), 1, - sym_init_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 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, - [50111] = 5, + [33822] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2745), 2, + ACTIONS(2887), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3428), 4, + ACTIONS(3595), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2743), 15, + ACTIONS(2884), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -102994,22 +107481,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [50145] = 5, + [33857] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2636), 2, + ACTIONS(2968), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3431), 4, + ACTIONS(3599), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2634), 15, + ACTIONS(2966), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103023,22 +107511,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [50179] = 5, + [33892] = 5, ACTIONS(3), 1, sym_comment, - STATE(723), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2697), 2, + ACTIONS(2972), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3434), 4, + ACTIONS(3602), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2694), 15, + ACTIONS(2970), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103052,23 +107541,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [50213] = 6, + [33927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1778), 1, - anon_sym_STAR, - ACTIONS(2712), 1, - anon_sym_LPAREN2, - STATE(1134), 1, + STATE(743), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3438), 4, + ACTIONS(2979), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3605), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1762), 15, + ACTIONS(2977), 16, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -103082,123 +107571,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Nonnull, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + aux_sym_primitive_type_token1, + anon_sym__BitInt, sym_identifier, - [50249] = 5, + [33962] = 5, ACTIONS(3), 1, sym_comment, - STATE(1135), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2646), 2, + ACTIONS(3610), 1, anon_sym_LPAREN2, + STATE(1035), 1, + sym_preproc_argument_list, + ACTIONS(3612), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3608), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3441), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2644), 15, - anon_sym___extension__, + anon_sym_PERCENT, + anon_sym_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, + [33996] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, + sym_identifier, + STATE(657), 1, + sym__old_style_function_declarator, + STATE(1326), 1, + sym_function_declarator, + STATE(1335), 1, + sym_ms_call_modifier, + STATE(1386), 1, + sym__declarator, + STATE(1491), 1, + sym__declaration_declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1709), 1, + sym_init_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [34050] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, sym_identifier, - [50283] = 15, + STATE(666), 1, + sym__old_style_function_declarator, + STATE(1326), 1, + sym_function_declarator, + STATE(1331), 1, + sym_ms_call_modifier, + STATE(1387), 1, + sym__declarator, + STATE(1468), 1, + sym__declaration_declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1635), 1, + sym_init_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [34104] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(661), 1, + STATE(662), 1, sym__old_style_function_declarator, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1312), 1, + STATE(1327), 1, sym_ms_call_modifier, - STATE(1361), 1, + STATE(1391), 1, sym__declarator, - STATE(1455), 1, + STATE(1493), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1592), 1, + STATE(1613), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50337] = 14, + [34158] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(675), 1, + sym__old_style_function_declarator, + STATE(1326), 1, sym_function_declarator, - STATE(1315), 1, + STATE(1332), 1, sym_ms_call_modifier, - STATE(1455), 1, + STATE(1396), 1, + sym__declarator, + STATE(1474), 1, sym__declaration_declarator, - STATE(1457), 1, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1720), 1, + sym_init_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [34212] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, + sym_identifier, + STATE(1326), 1, + sym_function_declarator, + STATE(1339), 1, + sym_ms_call_modifier, + STATE(1467), 1, sym__declarator, - STATE(1511), 1, + STATE(1491), 1, + sym__declaration_declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1592), 1, + STATE(1709), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50388] = 5, - ACTIONS(3393), 1, + [34263] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, + sym_identifier, + STATE(1326), 1, + sym_function_declarator, + STATE(1336), 1, + sym_ms_call_modifier, + STATE(1467), 1, + sym__declarator, + STATE(1493), 1, + sym__declaration_declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1613), 1, + sym_init_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [34314] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + sym_identifier, + ACTIONS(3618), 1, + anon_sym_RPAREN, + ACTIONS(3620), 1, + anon_sym_LPAREN2, + ACTIONS(3622), 1, + anon_sym_defined, + ACTIONS(3628), 1, + sym_number_literal, + ACTIONS(3624), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3626), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3630), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1176), 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, + [34357] = 5, + ACTIONS(3608), 1, anon_sym_LF, - ACTIONS(3444), 1, + ACTIONS(3632), 1, anon_sym_LPAREN2, - ACTIONS(3446), 1, + ACTIONS(3634), 1, sym_comment, - STATE(1230), 1, + STATE(1265), 1, sym_preproc_argument_list, - ACTIONS(3397), 18, + ACTIONS(3612), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103217,585 +107894,607 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50421] = 14, + [34390] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + sym_identifier, + ACTIONS(3620), 1, + anon_sym_LPAREN2, + ACTIONS(3622), 1, + anon_sym_defined, + ACTIONS(3636), 1, + anon_sym_RPAREN, + ACTIONS(3638), 1, + sym_number_literal, + ACTIONS(3624), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3626), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3630), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1178), 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, + [34433] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1307), 1, + STATE(1335), 1, sym_ms_call_modifier, - STATE(1447), 1, - sym__declaration_declarator, - STATE(1457), 1, + STATE(1411), 1, sym__declarator, - STATE(1511), 1, + STATE(1491), 1, + sym__declaration_declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1575), 1, + STATE(1709), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50472] = 14, + [34484] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1302), 1, + STATE(1344), 1, sym_ms_call_modifier, - STATE(1380), 1, + STATE(1467), 1, sym__declarator, - STATE(1447), 1, + STATE(1468), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1575), 1, + STATE(1635), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50523] = 14, + [34535] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + ACTIONS(3642), 1, + anon_sym_RPAREN, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3652), 1, + anon_sym_AMP_AMP, + ACTIONS(3654), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_CARET, + ACTIONS(3658), 1, + anon_sym_AMP, + STATE(1679), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3660), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34590] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3616), 1, + sym_identifier, + ACTIONS(3620), 1, + anon_sym_LPAREN2, + ACTIONS(3622), 1, + anon_sym_defined, + ACTIONS(3668), 1, + anon_sym_RPAREN, + ACTIONS(3670), 1, + sym_number_literal, + ACTIONS(3624), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3626), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3630), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1184), 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, + [34633] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3652), 1, + anon_sym_AMP_AMP, + ACTIONS(3654), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_CARET, + ACTIONS(3658), 1, + anon_sym_AMP, + ACTIONS(3672), 1, + anon_sym_RPAREN, + STATE(1655), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3660), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [34688] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1312), 1, + STATE(1331), 1, sym_ms_call_modifier, - STATE(1376), 1, + STATE(1427), 1, sym__declarator, - STATE(1455), 1, + STATE(1468), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1592), 1, + STATE(1635), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50574] = 14, + [34739] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1310), 1, + STATE(1329), 1, sym_ms_call_modifier, - STATE(1372), 1, - sym__declarator, - STATE(1439), 1, + STATE(1465), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1467), 1, + sym__declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1632), 1, + STATE(1695), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50625] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, - sym_identifier, - ACTIONS(3450), 1, - anon_sym_RPAREN, - ACTIONS(3452), 1, - anon_sym_LPAREN2, - ACTIONS(3454), 1, - anon_sym_defined, - ACTIONS(3460), 1, - sym_number_literal, - ACTIONS(3456), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3462), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1149), 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, - [50668] = 14, + [34790] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1314), 1, + STATE(1330), 1, sym_ms_call_modifier, - STATE(1439), 1, - sym__declaration_declarator, - STATE(1457), 1, + STATE(1467), 1, sym__declarator, - STATE(1511), 1, + STATE(1474), 1, + sym__declaration_declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1632), 1, + STATE(1720), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50719] = 14, + [34841] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1305), 1, + STATE(1332), 1, sym_ms_call_modifier, - STATE(1457), 1, + STATE(1403), 1, sym__declarator, - STATE(1477), 1, + STATE(1474), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1765), 1, + STATE(1720), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50770] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3464), 1, - anon_sym_COMMA, - ACTIONS(3466), 1, - anon_sym_RPAREN, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3474), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3476), 1, - anon_sym_AMP_AMP, - ACTIONS(3478), 1, - anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_CARET, - ACTIONS(3482), 1, - anon_sym_AMP, - STATE(1655), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50825] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, - sym_identifier, - ACTIONS(3452), 1, - anon_sym_LPAREN2, - ACTIONS(3454), 1, - anon_sym_defined, - ACTIONS(3492), 1, - anon_sym_RPAREN, - ACTIONS(3494), 1, - sym_number_literal, - ACTIONS(3456), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3462), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1152), 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, - [50868] = 14, + [34892] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1311), 1, + STATE(1327), 1, sym_ms_call_modifier, - STATE(1457), 1, + STATE(1398), 1, sym__declarator, - STATE(1465), 1, + STATE(1493), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1605), 1, + STATE(1613), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [50919] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3464), 1, - anon_sym_COMMA, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3474), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3476), 1, - anon_sym_AMP_AMP, - ACTIONS(3478), 1, - anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_CARET, - ACTIONS(3482), 1, - anon_sym_AMP, - ACTIONS(3496), 1, - anon_sym_RPAREN, - STATE(1593), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50974] = 16, + [34943] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(3640), 1, anon_sym_COMMA, - ACTIONS(3472), 1, + ACTIONS(3648), 1, anon_sym_SLASH, - ACTIONS(3474), 1, + ACTIONS(3650), 1, anon_sym_PIPE_PIPE, - ACTIONS(3476), 1, + ACTIONS(3652), 1, anon_sym_AMP_AMP, - ACTIONS(3478), 1, + ACTIONS(3654), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3656), 1, anon_sym_CARET, - ACTIONS(3482), 1, + ACTIONS(3658), 1, anon_sym_AMP, - ACTIONS(3498), 1, + ACTIONS(3674), 1, anon_sym_RPAREN, - STATE(1578), 1, + STATE(1699), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3468), 2, + ACTIONS(3644), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, + ACTIONS(3646), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3484), 2, + ACTIONS(3660), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, + ACTIONS(3662), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3488), 2, + ACTIONS(3664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3490), 2, + ACTIONS(3666), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51029] = 14, + [34998] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1316), 1, + STATE(1338), 1, sym_ms_call_modifier, - STATE(1387), 1, + STATE(1467), 1, sym__declarator, - STATE(1458), 1, + STATE(1489), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1606), 1, + STATE(1602), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51080] = 14, + [35049] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(3121), 1, + anon_sym_const, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(3678), 1, + anon_sym_COLON, + STATE(760), 1, + sym_attribute_specifier, + STATE(1049), 1, + sym_enumerator_list, + ACTIONS(3123), 14, anon_sym_LPAREN2, - ACTIONS(3105), 1, anon_sym_STAR, - ACTIONS(3417), 1, - sym_identifier, - STATE(1298), 1, - sym_ms_call_modifier, - STATE(1300), 1, - sym_function_declarator, - STATE(1457), 1, - sym__declarator, - STATE(1458), 1, - sym__declaration_declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1606), 1, - sym_init_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 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, - [51131] = 14, + 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, + [35090] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1295), 1, - sym_ms_call_modifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1437), 1, - sym__declaration_declarator, - STATE(1457), 1, + STATE(1333), 1, + sym_ms_call_modifier, + STATE(1467), 1, sym__declarator, - STATE(1511), 1, + STATE(1504), 1, + sym__declaration_declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1678), 1, + STATE(1782), 1, sym_init_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [51182] = 10, + [35141] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3683), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3681), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [35177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3500), 1, - anon_sym_RPAREN, - ACTIONS(3502), 1, + ACTIONS(3695), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1153), 7, + STATE(1261), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103803,62 +108502,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51225] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(2947), 1, - anon_sym_const, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(3506), 1, - anon_sym_COLON, - STATE(746), 1, - sym_attribute_specifier, - STATE(1021), 1, - sym_enumerator_list, - ACTIONS(2949), 14, - 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, - [51266] = 9, + [35217] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3519), 1, + ACTIONS(3699), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1249), 7, + STATE(1263), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103866,30 +108533,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51306] = 9, + [35257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3523), 1, + ACTIONS(3701), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1201), 7, + STATE(1277), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103897,30 +108564,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51346] = 9, + [35297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3683), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3681), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35331] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3525), 1, + ACTIONS(3703), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1228), 7, + STATE(1278), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103928,30 +108623,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51386] = 9, + [35371] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3527), 1, + ACTIONS(3705), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1223), 7, + STATE(1256), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103959,30 +108654,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51426] = 9, + [35411] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3529), 1, + ACTIONS(3707), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1216), 7, + STATE(1266), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103990,30 +108685,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51466] = 9, + [35451] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3531), 1, + ACTIONS(3709), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1232), 7, + STATE(1279), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104021,55 +108716,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51506] = 3, + [35491] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3535), 5, + ACTIONS(3648), 1, anon_sym_SLASH, + ACTIONS(3654), 1, anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_CARET, + ACTIONS(3658), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3533), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3644), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3646), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3660), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3666), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51534] = 9, + ACTIONS(3681), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [35537] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3537), 1, + ACTIONS(3711), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1225), 7, + STATE(1244), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104077,30 +108781,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51574] = 9, + [35577] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3656), 1, + anon_sym_CARET, + ACTIONS(3658), 1, + anon_sym_AMP, + ACTIONS(3683), 1, + anon_sym_PIPE, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3660), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3681), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [35623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3539), 1, + ACTIONS(3713), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1229), 7, + STATE(1205), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104108,30 +108846,82 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51614] = 9, + [35663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3717), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3715), 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, + [35691] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3683), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3681), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [35723] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3541), 1, + ACTIONS(3719), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1210), 7, + STATE(1284), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104139,30 +108929,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51654] = 9, + [35763] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3543), 1, + ACTIONS(3721), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1224), 7, + STATE(1247), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104170,30 +108960,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51694] = 9, + [35803] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3650), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3652), 1, + anon_sym_AMP_AMP, + ACTIONS(3654), 1, + anon_sym_PIPE, + ACTIONS(3656), 1, + anon_sym_CARET, + ACTIONS(3658), 1, + anon_sym_AMP, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3660), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3723), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [35853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3545), 1, + ACTIONS(3725), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1220), 7, + STATE(1250), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104201,30 +109027,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51734] = 9, + [35893] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3547), 1, + ACTIONS(3727), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1179), 7, + STATE(1276), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104232,30 +109058,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51774] = 9, + [35933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3731), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3729), 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, + [35961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3735), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3733), 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, + [35989] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3549), 1, + ACTIONS(3737), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1211), 7, + STATE(1248), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104263,30 +109139,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51814] = 9, + [36029] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3551), 1, + ACTIONS(3739), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1203), 7, + STATE(1202), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104294,30 +109170,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51854] = 9, + [36069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3553), 1, + ACTIONS(3741), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1218), 7, + STATE(1240), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104325,30 +109201,63 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51894] = 9, + [36109] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3658), 1, + anon_sym_AMP, + ACTIONS(3683), 1, + anon_sym_PIPE, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3660), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3681), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [36153] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3555), 1, + ACTIONS(3743), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1231), 7, + STATE(1242), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104356,30 +109265,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51934] = 9, + [36193] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3557), 1, + ACTIONS(3745), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1244), 7, + STATE(1209), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104387,30 +109296,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [51974] = 9, + [36233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3559), 1, + ACTIONS(3747), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1226), 7, + STATE(1197), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104418,30 +109327,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52014] = 9, + [36273] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3561), 1, + ACTIONS(3749), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1214), 7, + STATE(1258), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104449,58 +109358,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52054] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3565), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3563), 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, - [52088] = 9, + [36313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3567), 1, + ACTIONS(3751), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1217), 7, + STATE(1253), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104508,91 +109389,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52128] = 3, + [36353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3571), 5, + ACTIONS(3648), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3569), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3644), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3646), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3660), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3666), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52156] = 14, + ACTIONS(3683), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3681), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [36395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3755), 5, anon_sym_SLASH, - ACTIONS(3474), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3476), 1, - anon_sym_AMP_AMP, - ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_CARET, - ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3468), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3753), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3484), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3490), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3573), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [52206] = 9, + [36423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3575), 1, + ACTIONS(3757), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1165), 7, + STATE(1257), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104600,30 +109477,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52246] = 9, + [36463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3577), 1, + ACTIONS(3759), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1233), 7, + STATE(1260), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104631,30 +109508,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52286] = 9, + [36503] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3579), 1, + ACTIONS(3761), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1235), 7, + STATE(1280), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104662,30 +109539,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52326] = 9, + [36543] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3581), 1, + ACTIONS(3763), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1241), 7, + STATE(1246), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104693,30 +109570,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52366] = 9, + [36583] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3583), 1, + ACTIONS(3765), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1207), 7, + STATE(1199), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104724,30 +109601,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52406] = 9, + [36623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3585), 1, + ACTIONS(3767), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1191), 7, + STATE(1264), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104755,30 +109632,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52446] = 9, + [36663] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3587), 1, + ACTIONS(3769), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1252), 7, + STATE(1213), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104786,24 +109663,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52486] = 9, + [36703] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3589), 1, + ACTIONS(3771), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -104817,61 +109694,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52526] = 9, + [36743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(2550), 5, anon_sym_SLASH, - ACTIONS(3468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3565), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3563), 7, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2552), 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, - [52566] = 9, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [36771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3591), 1, + ACTIONS(3773), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1209), 7, + STATE(1245), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104879,55 +109750,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52606] = 3, + [36811] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3595), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3593), 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, - [52634] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3597), 1, + ACTIONS(3775), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1196), 7, + STATE(1233), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104935,30 +109781,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52674] = 9, + [36851] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3599), 1, + ACTIONS(3777), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1245), 7, + STATE(1259), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104966,57 +109812,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52714] = 5, + [36891] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3648), 1, anon_sym_SLASH, - ACTIONS(3470), 2, + ACTIONS(3644), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3646), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3565), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3662), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3563), 13, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3683), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3681), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52746] = 9, + [36931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3601), 1, + ACTIONS(3779), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1246), 7, + STATE(1267), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105024,30 +109874,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52786] = 9, + [36971] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3603), 1, + ACTIONS(3781), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1222), 7, + STATE(1288), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105055,30 +109905,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52826] = 9, + [37011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3605), 1, + ACTIONS(3783), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1247), 7, + STATE(1188), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105086,30 +109936,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52866] = 9, + [37051] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3620), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3622), 1, anon_sym_defined, - ACTIONS(3607), 1, + ACTIONS(3785), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3624), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3626), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3630), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1234), 7, + STATE(1192), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105117,55 +109967,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52906] = 3, + [37091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3565), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3563), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3685), 1, + sym_identifier, + ACTIONS(3687), 1, + anon_sym_LPAREN2, + ACTIONS(3689), 1, + anon_sym_defined, + ACTIONS(3787), 1, + sym_number_literal, + ACTIONS(3691), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [52934] = 9, + ACTIONS(3697), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1271), 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, + [37131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3452), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3454), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3609), 1, + ACTIONS(3789), 1, sym_number_literal, - ACTIONS(3456), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3458), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3462), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1204), 7, + STATE(1272), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105173,63 +110029,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [52974] = 13, + [37171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3683), 5, anon_sym_SLASH, - ACTIONS(3476), 1, - anon_sym_AMP_AMP, - ACTIONS(3478), 1, anon_sym_PIPE, - ACTIONS(3480), 1, - anon_sym_CARET, - ACTIONS(3482), 1, anon_sym_AMP, - ACTIONS(3468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3486), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3563), 3, + ACTIONS(3681), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [53022] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3468), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3565), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3563), 9, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -105237,61 +110052,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [53058] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3509), 1, - sym_identifier, - ACTIONS(3511), 1, - anon_sym_LPAREN2, - ACTIONS(3513), 1, - anon_sym_defined, - ACTIONS(3611), 1, - sym_number_literal, - ACTIONS(3515), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3517), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3521), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1250), 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, - [53098] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37199] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3685), 1, sym_identifier, - ACTIONS(3511), 1, + ACTIONS(3687), 1, anon_sym_LPAREN2, - ACTIONS(3513), 1, + ACTIONS(3689), 1, anon_sym_defined, - ACTIONS(3613), 1, + ACTIONS(3791), 1, sym_number_literal, - ACTIONS(3515), 2, + ACTIONS(3691), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3517), 2, + ACTIONS(3693), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3521), 5, + ACTIONS(3697), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1221), 7, + STATE(1262), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -105299,310 +110085,301 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [53138] = 12, + [37239] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3648), 1, anon_sym_SLASH, - ACTIONS(3478), 1, + ACTIONS(3652), 1, + anon_sym_AMP_AMP, + ACTIONS(3654), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3656), 1, anon_sym_CARET, - ACTIONS(3482), 1, + ACTIONS(3658), 1, anon_sym_AMP, - ACTIONS(3468), 2, + ACTIONS(3644), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, + ACTIONS(3646), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3484), 2, + ACTIONS(3660), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, + ACTIONS(3662), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3488), 2, + ACTIONS(3664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3490), 2, + ACTIONS(3666), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3563), 4, + ACTIONS(3681), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [53184] = 3, - ACTIONS(3), 1, + [37287] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3617), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3615), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3715), 1, + anon_sym_LF, + ACTIONS(3717), 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, - [53212] = 12, - ACTIONS(3), 1, + [37314] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3480), 1, + ACTIONS(3681), 1, + anon_sym_LF, + ACTIONS(3683), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3482), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3468), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3563), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [53258] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3482), 1, - anon_sym_AMP, - ACTIONS(3565), 1, - anon_sym_PIPE, - ACTIONS(3468), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3470), 2, + ACTIONS(3795), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3484), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3486), 2, + ACTIONS(3807), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3563), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LT, + [37359] = 12, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3797), 1, anon_sym_AMP_AMP, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, anon_sym_CARET, - [53302] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3468), 2, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3811), 1, + anon_sym_LF, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, + ACTIONS(3809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3795), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3807), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3490), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3565), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3563), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [53344] = 3, - ACTIONS(3), 1, + anon_sym_LT, + [37404] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(2437), 5, - anon_sym_SLASH, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2439), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3815), 1, + anon_sym_LF, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53372] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3448), 1, - sym_identifier, - ACTIONS(3452), 1, - anon_sym_LPAREN2, - ACTIONS(3454), 1, - anon_sym_defined, - ACTIONS(3619), 1, - sym_number_literal, - ACTIONS(3456), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3458), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3462), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1182), 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, - [53412] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3472), 1, + ACTIONS(3795), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3474), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3476), 1, + anon_sym_PERCENT, + ACTIONS(3807), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37449] = 12, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3797), 1, anon_sym_AMP_AMP, - ACTIONS(3478), 1, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3482), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3621), 1, - anon_sym_RPAREN, - ACTIONS(3468), 2, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3817), 1, + anon_sym_LF, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53461] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3569), 1, - anon_sym_LF, - ACTIONS(3571), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(3807), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [37494] = 12, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3797), 1, anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, + ACTIONS(3801), 1, anon_sym_CARET, + ACTIONS(3803), 1, anon_sym_AMP, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3819), 1, + anon_sym_LF, + ACTIONS(3793), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3795), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53488] = 4, - ACTIONS(3446), 1, + [37539] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(3623), 3, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3565), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(1383), 1, + sym__type_declarator, + STATE(1537), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [37584] = 11, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3681), 1, + anon_sym_LF, + ACTIONS(3799), 1, anon_sym_PIPE, + ACTIONS(3801), 1, anon_sym_CARET, + ACTIONS(3803), 1, anon_sym_AMP, + ACTIONS(3683), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3793), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3795), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53517] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3563), 1, + [37627] = 3, + ACTIONS(3347), 1, anon_sym_LF, - ACTIONS(3565), 18, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3345), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105621,149 +110398,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53544] = 11, - ACTIONS(3446), 1, + [37654] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3565), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3635), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [53587] = 10, - ACTIONS(3446), 1, + STATE(669), 1, + sym__old_style_function_declarator, + STATE(1376), 1, + sym_ms_call_modifier, + STATE(1409), 1, + sym__declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [37697] = 10, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3565), 3, + ACTIONS(3683), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53628] = 9, - ACTIONS(3446), 1, + [37738] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(1383), 1, + sym__type_declarator, + STATE(1550), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [37783] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(1383), 1, + sym__type_declarator, + STATE(1529), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [37828] = 9, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3565), 4, + ACTIONS(3683), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53667] = 8, - ACTIONS(3446), 1, + [37867] = 8, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3565), 5, + ACTIONS(3683), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [53704] = 7, - ACTIONS(3446), 1, + [37904] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3733), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3735), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3565), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105771,46 +110604,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [53739] = 6, - ACTIONS(3446), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [37931] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, + anon_sym_PIPE, + ACTIONS(3801), 1, + anon_sym_CARET, + ACTIONS(3803), 1, + anon_sym_AMP, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3821), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3637), 2, + ACTIONS(3805), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3565), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53772] = 5, - ACTIONS(3446), 1, + [37976] = 7, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3563), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3623), 3, + ACTIONS(3809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3565), 13, + ACTIONS(3807), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(3683), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105818,89 +110671,79 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53803] = 12, - ACTIONS(3446), 1, + [38011] = 6, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3639), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3683), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53848] = 12, - ACTIONS(3446), 1, + [38044] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3645), 1, + ACTIONS(3823), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [53893] = 3, - ACTIONS(3446), 1, + [38089] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3593), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3595), 18, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3683), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105914,78 +110757,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [53920] = 12, - ACTIONS(3446), 1, + [38120] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, + ACTIONS(3797), 1, anon_sym_AMP_AMP, - ACTIONS(3647), 1, - anon_sym_LF, - ACTIONS(3625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3635), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [53965] = 12, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3627), 1, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3649), 1, + ACTIONS(3825), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54010] = 3, - ACTIONS(3181), 1, + [38165] = 3, + ACTIONS(3351), 1, anon_sym_LF, - ACTIONS(3446), 1, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3179), 18, + ACTIONS(3349), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106004,223 +110814,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54037] = 12, - ACTIONS(3446), 1, + [38192] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3651), 1, + ACTIONS(3827), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54082] = 14, - ACTIONS(3), 1, + [38237] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3472), 1, - anon_sym_SLASH, - ACTIONS(3474), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3476), 1, + ACTIONS(3797), 1, anon_sym_AMP_AMP, - ACTIONS(3478), 1, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3480), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3482), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3653), 1, - anon_sym_RPAREN, - ACTIONS(3468), 2, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3829), 1, + anon_sym_LF, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3470), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3484), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3486), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3488), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3490), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54131] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3533), 1, - anon_sym_LF, - ACTIONS(3535), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3795), 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(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54158] = 12, - ACTIONS(3446), 1, + [38282] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(1383), 1, + sym__type_declarator, + STATE(1530), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [38327] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + STATE(658), 1, + sym__old_style_function_declarator, + STATE(1379), 1, + sym_ms_call_modifier, + STATE(1400), 1, + sym__declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [38370] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(1383), 1, + sym__type_declarator, + STATE(1527), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [38415] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3655), 1, + ACTIONS(3831), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54203] = 12, - ACTIONS(3446), 1, + [38460] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3657), 1, + ACTIONS(3833), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54248] = 3, - ACTIONS(2439), 1, - anon_sym_LF, - ACTIONS(3446), 1, + [38505] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, + anon_sym_STAR, + STATE(1383), 1, + sym__type_declarator, + STATE(1552), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [38550] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + STATE(663), 1, + sym__old_style_function_declarator, + STATE(1381), 1, + sym_ms_call_modifier, + STATE(1404), 1, + sym__declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [38593] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, anon_sym_STAR, + STATE(1383), 1, + sym__type_declarator, + STATE(1546), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [38638] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3648), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3650), 1, anon_sym_PIPE_PIPE, + ACTIONS(3652), 1, anon_sym_AMP_AMP, + ACTIONS(3654), 1, anon_sym_PIPE, + ACTIONS(3656), 1, anon_sym_CARET, + ACTIONS(3658), 1, 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, - [54275] = 3, - ACTIONS(3167), 1, - anon_sym_LF, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3165), 18, + ACTIONS(3835), 1, + anon_sym_RPAREN, + ACTIONS(3644), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3646), 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, + ACTIONS(3660), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3662), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3666), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54302] = 3, - ACTIONS(3446), 1, + [38687] = 4, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3615), 1, + ACTIONS(3681), 1, anon_sym_LF, - ACTIONS(3617), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3683), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -106234,12 +111202,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54329] = 3, - ACTIONS(3195), 1, - anon_sym_LF, - ACTIONS(3446), 1, + [38716] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3193), 18, + ACTIONS(3681), 1, + anon_sym_LF, + ACTIONS(3683), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -106258,711 +111226,559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [54356] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(655), 1, - sym__old_style_function_declarator, - STATE(1350), 1, - sym_ms_call_modifier, - STATE(1390), 1, - sym__declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1300), 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, - [54399] = 12, - ACTIONS(3446), 1, + [38743] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3659), 1, + ACTIONS(3837), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54444] = 3, - ACTIONS(3191), 1, - anon_sym_LF, - ACTIONS(3446), 1, + [38788] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3189), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(3797), 1, anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, + ACTIONS(3801), 1, anon_sym_CARET, + ACTIONS(3803), 1, anon_sym_AMP, + ACTIONS(3813), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3839), 1, + anon_sym_LF, + ACTIONS(3793), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3809), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3795), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54471] = 11, + [38833] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(658), 1, + STATE(674), 1, sym__old_style_function_declarator, - STATE(1344), 1, + STATE(1375), 1, sym_ms_call_modifier, - STATE(1384), 1, + STATE(1401), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [54514] = 12, - ACTIONS(3446), 1, + [38876] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3661), 1, - anon_sym_LF, - ACTIONS(3625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3148), 1, + sym_identifier, + ACTIONS(3150), 1, + anon_sym_LPAREN2, + ACTIONS(3152), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3635), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [54559] = 12, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3663), 1, + STATE(1383), 1, + sym__type_declarator, + STATE(1542), 1, + sym__type_definition_declarators, + STATE(2057), 1, + sym_ms_based_modifier, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [38921] = 3, + ACTIONS(3343), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3341), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 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, - [54604] = 12, - ACTIONS(3446), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [38948] = 12, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, + ACTIONS(3797), 1, + anon_sym_AMP_AMP, + ACTIONS(3799), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3801), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3803), 1, anon_sym_AMP, - ACTIONS(3641), 1, + ACTIONS(3813), 1, anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3665), 1, + ACTIONS(3841), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3793), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3805), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3809), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + ACTIONS(3795), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 4, + ACTIONS(3807), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54649] = 12, - ACTIONS(3446), 1, + [38993] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3667), 1, + ACTIONS(3753), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3755), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 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, - [54694] = 11, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39020] = 3, + ACTIONS(2552), 1, + anon_sym_LF, + ACTIONS(3634), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(2550), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - STATE(654), 1, - sym__old_style_function_declarator, - STATE(1348), 1, - sym_ms_call_modifier, - STATE(1379), 1, - sym__declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1300), 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, - [54737] = 12, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3627), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3629), 1, anon_sym_CARET, - ACTIONS(3631), 1, anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3669), 1, - anon_sym_LF, - ACTIONS(3625), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3633), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3635), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [54782] = 12, - ACTIONS(3446), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39047] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3627), 1, - anon_sym_PIPE, - ACTIONS(3629), 1, - anon_sym_CARET, - ACTIONS(3631), 1, - anon_sym_AMP, - ACTIONS(3641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3671), 1, + ACTIONS(3729), 1, anon_sym_LF, - ACTIONS(3625), 2, + ACTIONS(3731), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3637), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3623), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 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, - [54827] = 11, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39074] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(660), 1, - sym__old_style_function_declarator, - STATE(1349), 1, - sym_ms_call_modifier, - STATE(1371), 1, - sym__declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1300), 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, - [54870] = 12, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(3563), 1, - anon_sym_LF, - ACTIONS(3565), 1, + ACTIONS(3648), 1, + anon_sym_SLASH, + ACTIONS(3650), 1, anon_sym_PIPE_PIPE, - ACTIONS(3627), 1, + ACTIONS(3652), 1, + anon_sym_AMP_AMP, + ACTIONS(3654), 1, anon_sym_PIPE, - ACTIONS(3629), 1, + ACTIONS(3656), 1, anon_sym_CARET, - ACTIONS(3631), 1, + ACTIONS(3658), 1, anon_sym_AMP, - ACTIONS(3643), 1, - anon_sym_AMP_AMP, - ACTIONS(3625), 2, + ACTIONS(3843), 1, + anon_sym_RPAREN, + ACTIONS(3644), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3633), 2, + ACTIONS(3646), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3660), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3637), 2, + ACTIONS(3662), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3664), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3666), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3623), 3, + [39123] = 3, + ACTIONS(3355), 1, + anon_sym_LF, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(3353), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3635), 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, - [54915] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(1349), 1, - sym_ms_call_modifier, - STATE(1413), 1, - sym__declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1300), 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, - [54955] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - sym_identifier, - ACTIONS(3677), 1, - anon_sym_LBRACK, - STATE(1268), 1, - sym_gnu_asm_expression, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - STATE(1264), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3675), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [54991] = 10, + anon_sym_LT_LT, + anon_sym_GT_GT, + [39150] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3148), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3150), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3152), 1, anon_sym_STAR, - STATE(1352), 1, - sym_ms_call_modifier, - STATE(1460), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1462), 1, + sym__type_declarator, + STATE(2057), 1, sym_ms_based_modifier, - STATE(1382), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(41), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - [55031] = 10, + ACTIONS(3154), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1431), 6, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_primitive_type, + [39192] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1337), 1, + STATE(1376), 1, sym_ms_call_modifier, - STATE(1442), 1, + STATE(1445), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55071] = 12, + [39232] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1916), 1, anon_sym_LPAREN2, - ACTIONS(1817), 1, + ACTIONS(1918), 1, anon_sym_STAR, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(2831), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - STATE(1433), 1, - sym__declarator, - STATE(1452), 1, + STATE(1481), 1, sym_parameter_list, - STATE(1551), 1, + STATE(1482), 1, + sym__declarator, + STATE(1576), 1, sym__abstract_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1443), 4, + STATE(1478), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [55115] = 10, + [39276] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1350), 1, + STATE(1375), 1, sym_ms_call_modifier, - STATE(1403), 1, + STATE(1451), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55155] = 10, + [39316] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1344), 1, + STATE(1381), 1, sym_ms_call_modifier, - STATE(1422), 1, + STATE(1438), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55195] = 11, + [39356] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3677), 1, - anon_sym_LBRACK, - STATE(1263), 1, - sym_gnu_asm_expression, - STATE(1313), 1, - sym_attribute_specifier, - STATE(1370), 1, - aux_sym_type_definition_repeat1, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3679), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1264), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3675), 4, + ACTIONS(3265), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55237] = 10, + ACTIONS(3267), 1, + anon_sym_STAR, + STATE(1369), 1, + sym_ms_call_modifier, + STATE(1469), 1, + sym__declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [39396] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1348), 1, + STATE(1379), 1, sym_ms_call_modifier, - STATE(1406), 1, + STATE(1454), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - ACTIONS(41), 6, + ACTIONS(45), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [55277] = 6, + [39436] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(35), 2, + ACTIONS(3849), 1, + anon_sym_LBRACK, + STATE(1302), 1, + sym_gnu_asm_expression, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1269), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3683), 4, - anon_sym_LBRACK, + ACTIONS(105), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3681), 7, + STATE(1305), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3847), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106970,168 +111786,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55308] = 10, + [39472] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3689), 1, + ACTIONS(3849), 1, anon_sym_LBRACK, - STATE(1313), 1, + STATE(1301), 1, + sym_gnu_asm_expression, + STATE(1345), 1, sym_attribute_specifier, - STATE(1369), 1, + STATE(1399), 1, aux_sym_type_definition_repeat1, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(3685), 2, + ACTIONS(3851), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1262), 2, - sym_preproc_call_expression, - aux_sym_function_declarator_repeat1, - ACTIONS(3691), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(3687), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [55347] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - sym_identifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1269), 3, + STATE(1305), 2, sym_preproc_call_expression, - sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3689), 4, - anon_sym_LBRACK, + ACTIONS(105), 3, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3687), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3847), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55378] = 11, + [39514] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(59), 1, + aux_sym_primitive_type_token1, + ACTIONS(61), 1, + anon_sym__BitInt, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3148), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3150), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3152), 1, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1338), 1, + STATE(1395), 1, sym__type_declarator, - STATE(1503), 1, - sym__type_definition_declarators, - STATE(1920), 1, + STATE(2057), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, + ACTIONS(3154), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1415), 5, + STATE(1431), 6, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [55419] = 11, + sym_primitive_type, + [39556] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3273), 1, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1338), 1, - sym__type_declarator, - STATE(1513), 1, - sym__type_definition_declarators, - STATE(1920), 1, + STATE(1359), 1, + sym_ms_call_modifier, + STATE(1479), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55460] = 11, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + ACTIONS(45), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + [39596] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3857), 1, + anon_sym_LBRACK, + STATE(1345), 1, + sym_attribute_specifier, + STATE(1416), 1, + aux_sym_type_definition_repeat1, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3853), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1304), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3859), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3855), 4, anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1338), 1, - sym__type_declarator, - STATE(1510), 1, - sym__type_definition_declarators, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55501] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [39635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1262), 3, + STATE(1304), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3689), 4, + ACTIONS(3857), 4, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3687), 7, + ACTIONS(3855), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107139,24 +111932,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55532] = 6, + [39666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3693), 1, + ACTIONS(3861), 1, sym_identifier, - ACTIONS(3698), 2, + ACTIONS(3866), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1269), 3, + STATE(1303), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3701), 4, + ACTIONS(3869), 4, anon_sym_LBRACK, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - ACTIONS(3696), 7, + ACTIONS(3864), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107164,227 +111957,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [55563] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(1338), 1, - sym__type_declarator, - STATE(1493), 1, - sym__type_definition_declarators, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55604] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(1338), 1, - sym__type_declarator, - STATE(1515), 1, - sym__type_definition_declarators, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55645] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(1338), 1, - sym__type_declarator, - STATE(1502), 1, - sym__type_definition_declarators, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55686] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(1338), 1, - sym__type_declarator, - STATE(1496), 1, - sym__type_definition_declarators, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55727] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 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(1338), 1, - sym__type_declarator, - STATE(1508), 1, - sym__type_definition_declarators, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55768] = 12, + [39697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3099), 1, - anon_sym_LPAREN2, - ACTIONS(3101), 1, - anon_sym_STAR, - ACTIONS(3703), 1, - anon_sym_SEMI, - STATE(1304), 1, - sym__field_declarator, - STATE(1536), 1, - sym__field_declaration_declarator, - STATE(1976), 1, - sym_attribute_specifier, - STATE(1990), 1, - sym_ms_based_modifier, - ACTIONS(35), 2, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1382), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [55810] = 10, + STATE(1303), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3873), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3871), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [39728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1303), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3857), 4, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3855), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3014), 1, - anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1357), 1, - sym__type_declarator, - STATE(1920), 1, - sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55848] = 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [39759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 1, + ACTIONS(3879), 1, anon_sym_LBRACK_LBRACK, - STATE(1277), 2, + STATE(1306), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3707), 3, + ACTIONS(3877), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3705), 10, + ACTIONS(3875), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107395,123 +112030,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [55876] = 12, + [39787] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3273), 1, anon_sym_STAR, - ACTIONS(3712), 1, + ACTIONS(3882), 1, anon_sym_SEMI, - STATE(1304), 1, + STATE(1324), 1, sym__field_declarator, - STATE(1561), 1, + STATE(1553), 1, sym__field_declaration_declarator, - STATE(1869), 1, - sym_attribute_specifier, - STATE(1990), 1, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(35), 2, + STATE(2046), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1382), 5, + STATE(1414), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [55918] = 12, + [39829] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3273), 1, anon_sym_STAR, - ACTIONS(3714), 1, + ACTIONS(3884), 1, anon_sym_SEMI, - STATE(1304), 1, + STATE(1324), 1, sym__field_declarator, - STATE(1521), 1, + STATE(1595), 1, sym__field_declaration_declarator, - STATE(1852), 1, - sym_attribute_specifier, - STATE(1990), 1, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(35), 2, + STATE(2047), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(1382), 5, + STATE(1414), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [55960] = 10, + [39871] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3010), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3012), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3014), 1, + ACTIONS(3273), 1, anon_sym_STAR, - ACTIONS(3018), 1, - sym_primitive_type, - STATE(1446), 1, - sym__type_declarator, - STATE(1920), 1, + ACTIONS(3886), 1, + anon_sym_SEMI, + STATE(1324), 1, + sym__field_declarator, + STATE(1578), 1, + sym__field_declaration_declarator, + STATE(1890), 1, sym_ms_based_modifier, - ACTIONS(3016), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1415), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [55998] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - sym_identifier, - ACTIONS(3677), 1, - anon_sym_LBRACK, - STATE(1325), 1, - sym_gnu_asm_expression, - ACTIONS(35), 2, + STATE(1905), 1, + sym_attribute_specifier, + ACTIONS(39), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(93), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - STATE(1331), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3675), 4, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [39913] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3610), 1, + anon_sym_LPAREN2, + STATE(1035), 1, + sym_preproc_argument_list, + ACTIONS(3890), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [56031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2945), 7, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3888), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -107519,58 +112142,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(2938), 8, + [39940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + STATE(1306), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3894), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3892), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [56054] = 11, + anon_sym_asm, + anon_sym___asm__, + [39967] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3718), 1, + ACTIONS(3898), 1, aux_sym_preproc_if_token2, - ACTIONS(3720), 1, + ACTIONS(3900), 1, aux_sym_preproc_else_token1, - ACTIONS(3722), 1, + ACTIONS(3902), 1, aux_sym_preproc_elif_token1, - STATE(1324), 1, + STATE(1373), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1374), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1334), 1, + STATE(1485), 1, + sym_enumerator, + ACTIONS(3904), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1815), 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(2010), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [40006] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(3900), 1, + aux_sym_preproc_else_token1, + ACTIONS(3902), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3906), 1, + aux_sym_preproc_if_token2, + STATE(1367), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1451), 1, + STATE(1368), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1485), 1, sym_enumerator, - ACTIONS(3724), 2, + ACTIONS(3904), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1787), 3, + STATE(1954), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1860), 3, + STATE(1961), 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, - [56093] = 5, + [40045] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3845), 1, + sym_identifier, + ACTIONS(3849), 1, + anon_sym_LBRACK, + STATE(1364), 1, + sym_gnu_asm_expression, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(105), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + STATE(1363), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3847), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(991), 1, - sym_preproc_argument_list, - ACTIONS(3728), 6, + anon_sym_LBRACK_LBRACK, + [40078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3029), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + ACTIONS(3022), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3726), 7, + anon_sym_COLON, + [40101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3908), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -107578,94 +112276,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - [56120] = 11, + ACTIONS(3910), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [40124] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3720), 1, + ACTIONS(3900), 1, aux_sym_preproc_else_token1, - ACTIONS(3722), 1, + ACTIONS(3902), 1, aux_sym_preproc_elif_token1, - ACTIONS(3730), 1, + ACTIONS(3912), 1, aux_sym_preproc_if_token2, - STATE(1346), 1, + STATE(1357), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1347), 1, + STATE(1358), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1451), 1, + STATE(1485), 1, sym_enumerator, - ACTIONS(3724), 2, + ACTIONS(3904), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1894), 3, + STATE(1945), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1895), 3, + STATE(1948), 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, - [56159] = 11, + [40163] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3720), 1, + ACTIONS(3900), 1, aux_sym_preproc_else_token1, - ACTIONS(3722), 1, + ACTIONS(3902), 1, aux_sym_preproc_elif_token1, - ACTIONS(3732), 1, + ACTIONS(3914), 1, aux_sym_preproc_if_token2, - STATE(1329), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1330), 1, + STATE(1353), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1451), 1, - sym_enumerator, - ACTIONS(3724), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1767), 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(1853), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [56198] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(3720), 1, - aux_sym_preproc_else_token1, - ACTIONS(3722), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3734), 1, - aux_sym_preproc_if_token2, - STATE(1339), 1, + STATE(1382), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1340), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1451), 1, + STATE(1485), 1, sym_enumerator, - ACTIONS(3724), 2, + ACTIONS(3904), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1836), 3, + STATE(2026), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(1838), 3, + STATE(2027), 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, - [56237] = 3, + [40202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 7, + ACTIONS(3041), 7, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, @@ -107673,7 +112352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym___asm, sym_identifier, - ACTIONS(3738), 8, + ACTIONS(3034), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107682,65 +112361,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [56260] = 5, + [40225] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(1277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3742), 3, - anon_sym___attribute, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, anon_sym_LBRACK, + ACTIONS(3922), 1, anon_sym___asm, - ACTIONS(3740), 9, + STATE(1297), 1, + sym_parameter_list, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3916), 7, 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__, - [56287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 7, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - ACTIONS(2926), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [56310] = 8, + [40257] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3750), 1, + ACTIONS(3926), 1, anon_sym___asm, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3744), 7, + ACTIONS(3924), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -107748,23 +112409,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56342] = 8, + [40289] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3930), 1, anon_sym___asm, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3752), 7, + ACTIONS(3928), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -107772,23 +112433,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56374] = 8, + [40321] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3758), 1, + ACTIONS(3934), 1, anon_sym___asm, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3756), 7, + ACTIONS(3932), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -107796,88 +112457,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56406] = 8, + [40353] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3936), 1, + anon_sym_COMMA, + ACTIONS(3940), 1, + anon_sym___attribute, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, - anon_sym___asm, - STATE(1254), 1, + ACTIONS(3944), 1, + anon_sym_COLON, + STATE(1412), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1534), 1, + sym_bitfield_clause, + STATE(1540), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3938), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3760), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [56438] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, - sym_identifier, - STATE(1300), 1, - sym_function_declarator, - STATE(1438), 1, - sym__declaration_declarator, - STATE(1487), 1, - sym__declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [56475] = 9, + [40392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, + ACTIONS(21), 1, sym_preproc_directive, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3766), 1, + ACTIONS(3948), 1, aux_sym_preproc_if_token1, - ACTIONS(3770), 1, + ACTIONS(3952), 1, anon_sym_RBRACE, - ACTIONS(3768), 2, + ACTIONS(3950), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1718), 2, + STATE(1767), 2, sym_preproc_call, sym_enumerator, - STATE(1823), 2, + STATE(1900), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1308), 3, + STATE(1355), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [56508] = 3, + [40425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 3, + ACTIONS(3956), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3772), 10, + ACTIONS(3954), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107888,40 +112526,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56529] = 11, + [40446] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1450), 1, - sym__declaration_declarator, - STATE(1487), 1, + STATE(1434), 1, sym__declarator, - STATE(1511), 1, + STATE(1495), 1, + sym__declaration_declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56566] = 3, + [40483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 3, + ACTIONS(3960), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3776), 10, + ACTIONS(3958), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107932,147 +112570,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56587] = 3, + [40504] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3780), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 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__, - [56608] = 3, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, + sym_identifier, + STATE(1326), 1, + sym_function_declarator, + STATE(1484), 1, + sym__declaration_declarator, + STATE(1521), 1, + sym__declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [40541] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3784), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 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__, - [56629] = 11, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, + sym_identifier, + STATE(1326), 1, + sym_function_declarator, + STATE(1486), 1, + sym__declaration_declarator, + STATE(1521), 1, + sym__declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [40578] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1418), 1, + STATE(1439), 1, sym__declarator, - STATE(1448), 1, + STATE(1464), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3790), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3788), 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__, - [56687] = 12, + [40615] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3792), 1, - anon_sym_COMMA, - ACTIONS(3796), 1, - anon_sym___attribute, - ACTIONS(3798), 1, - anon_sym_LBRACK, - ACTIONS(3800), 1, - anon_sym_COLON, - STATE(1396), 1, - sym_parameter_list, - STATE(1514), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1518), 1, - sym_bitfield_clause, - ACTIONS(3794), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [56726] = 11, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, + sym_identifier, + STATE(1326), 1, + sym_function_declarator, + STATE(1430), 1, + sym__declarator, + STATE(1486), 1, + sym__declaration_declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [40652] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1484), 1, + STATE(1515), 1, sym__declaration_declarator, - STATE(1487), 1, + STATE(1521), 1, sym__declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56763] = 3, + [40689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 3, + ACTIONS(3964), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3802), 10, + ACTIONS(3962), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108083,64 +112718,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56784] = 11, + [40710] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, STATE(1448), 1, - sym__declaration_declarator, - STATE(1487), 1, sym__declarator, - STATE(1511), 1, + STATE(1466), 1, + sym__declaration_declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56821] = 9, + [40747] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(3764), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3265), 1, + anon_sym_LPAREN2, + ACTIONS(3267), 1, + anon_sym_STAR, + ACTIONS(3614), 1, sym_identifier, - ACTIONS(3766), 1, - aux_sym_preproc_if_token1, - ACTIONS(3806), 1, - anon_sym_RBRACE, - ACTIONS(3768), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1734), 2, - sym_preproc_call, - sym_enumerator, - STATE(1889), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1332), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [56854] = 3, + STATE(1326), 1, + sym_function_declarator, + STATE(1495), 1, + sym__declaration_declarator, + STATE(1521), 1, + sym__declarator, + STATE(1539), 1, + sym__function_declaration_declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1393), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [40784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3810), 3, + ACTIONS(3968), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3808), 10, + ACTIONS(3966), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108151,1497 +112788,1525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [56875] = 11, + [40805] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1419), 1, - sym__declarator, - STATE(1440), 1, + STATE(1490), 1, sym__declaration_declarator, - STATE(1511), 1, + STATE(1521), 1, + sym__declarator, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56912] = 11, + [40842] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1434), 1, + STATE(1466), 1, sym__declaration_declarator, - STATE(1487), 1, + STATE(1521), 1, sym__declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [56949] = 11, + [40879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3972), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3970), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, - sym_identifier, - STATE(1300), 1, - sym_function_declarator, - STATE(1405), 1, - sym__declarator, - STATE(1444), 1, - sym__declaration_declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [56986] = 6, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [40900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3726), 2, + ACTIONS(3976), 3, + anon_sym___attribute, anon_sym_LBRACK, - sym_identifier, - ACTIONS(3812), 2, + anon_sym___asm, + ACTIONS(3974), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(3814), 2, anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(3817), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + [40921] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + sym_preproc_directive, + ACTIONS(3946), 1, + sym_identifier, + ACTIONS(3948), 1, + aux_sym_preproc_if_token1, + ACTIONS(3978), 1, + anon_sym_RBRACE, + ACTIONS(3950), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1751), 2, + sym_preproc_call, + sym_enumerator, + STATE(1915), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(1325), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [40954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3982), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3728), 4, + ACTIONS(3980), 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, - [57013] = 11, + anon_sym_asm, + anon_sym___asm__, + [40975] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3614), 1, sym_identifier, - STATE(1300), 1, + STATE(1326), 1, sym_function_declarator, - STATE(1440), 1, + STATE(1464), 1, sym__declaration_declarator, - STATE(1487), 1, + STATE(1521), 1, sym__declarator, - STATE(1511), 1, + STATE(1539), 1, sym__function_declaration_declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1363), 4, + STATE(1393), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, - [57050] = 11, + [41012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, + ACTIONS(3888), 2, + anon_sym_LBRACK, sym_identifier, - STATE(1300), 1, - sym_function_declarator, - STATE(1444), 1, - sym__declaration_declarator, - STATE(1487), 1, - sym__declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [57087] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(3103), 1, + ACTIONS(3984), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3986), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(3989), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(3890), 4, anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - ACTIONS(3417), 1, - sym_identifier, - STATE(1300), 1, - sym_function_declarator, - STATE(1401), 1, - sym__declarator, - STATE(1450), 1, - sym__declaration_declarator, - STATE(1511), 1, - sym__function_declaration_declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1363), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - [57124] = 8, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [41039] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3798), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3821), 1, + ACTIONS(3993), 1, anon_sym___attribute, - STATE(1396), 1, + STATE(1412), 1, sym_parameter_list, - STATE(1333), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3819), 5, + ACTIONS(3991), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57154] = 8, + [41069] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3798), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3825), 1, - anon_sym___attribute, - STATE(1396), 1, + STATE(1314), 1, sym_parameter_list, - STATE(1333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3823), 5, + ACTIONS(3995), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [57184] = 8, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(1499), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [41103] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3798), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3829), 1, + ACTIONS(3999), 1, anon_sym___attribute, - STATE(1396), 1, + STATE(1412), 1, sym_parameter_list, - STATE(1333), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3827), 5, + ACTIONS(3997), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [57214] = 10, + [41133] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3798), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3800), 1, - anon_sym_COLON, - ACTIONS(3833), 1, + ACTIONS(4003), 1, anon_sym___attribute, - STATE(1396), 1, + STATE(1412), 1, sym_parameter_list, - STATE(1535), 1, - sym_bitfield_clause, - STATE(1333), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3831), 3, + ACTIONS(4001), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57248] = 10, + anon_sym_COLON, + [41163] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - STATE(1281), 1, + ACTIONS(4007), 1, + anon_sym___attribute, + STATE(1412), 1, sym_parameter_list, - ACTIONS(3835), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1289), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(1478), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [57282] = 8, + ACTIONS(4005), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [41193] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3798), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(3839), 1, + ACTIONS(3944), 1, + anon_sym_COLON, + ACTIONS(4011), 1, anon_sym___attribute, - STATE(1396), 1, + STATE(1412), 1, sym_parameter_list, - STATE(1333), 2, + STATE(1556), 1, + sym_bitfield_clause, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3837), 5, + ACTIONS(4009), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [57312] = 8, + [41227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3843), 1, + ACTIONS(4015), 2, anon_sym___attribute, - ACTIONS(3845), 1, anon_sym_LBRACK, - STATE(1397), 1, - sym_parameter_list, - STATE(1358), 2, + STATE(1306), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3841), 4, + ACTIONS(4013), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [57341] = 8, + anon_sym_COLON, + [41250] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3847), 1, + ACTIONS(4017), 1, aux_sym_preproc_if_token2, - ACTIONS(3849), 1, + ACTIONS(4019), 1, aux_sym_preproc_else_token1, - ACTIONS(3851), 1, + ACTIONS(4021), 1, aux_sym_preproc_elif_token1, - ACTIONS(3853), 2, + ACTIONS(4023), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1414), 2, + STATE(1450), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1909), 3, + STATE(1968), 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, - [57370] = 6, + [41279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(4025), 1, sym_identifier, - ACTIONS(3689), 1, - anon_sym_LBRACK, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(1336), 3, - sym_preproc_call_expression, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3687), 4, - anon_sym_COMMA, + STATE(689), 1, + sym_string_literal, + ACTIONS(4027), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [57395] = 8, + anon_sym_COLON, + STATE(1564), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41304] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4029), 1, + sym_identifier, + ACTIONS(4032), 1, + aux_sym_preproc_if_token1, + ACTIONS(4038), 1, + sym_preproc_directive, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(4035), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(2064), 2, + sym_preproc_call, + sym_enumerator, + STATE(1355), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [41333] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, + ACTIONS(4045), 1, anon_sym___attribute, - STATE(1397), 1, + ACTIONS(4047), 1, + anon_sym_LBRACK, + STATE(1457), 1, sym_parameter_list, - STATE(1358), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3855), 4, + ACTIONS(4043), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57424] = 9, + [41362] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3718), 1, - aux_sym_preproc_if_token2, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(4049), 1, + aux_sym_preproc_if_token2, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3861), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - STATE(1334), 1, + STATE(1446), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - ACTIONS(3863), 2, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1787), 3, + STATE(1992), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57455] = 6, + [41393] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(3896), 1, sym_identifier, - STATE(663), 1, - sym_string_literal, - ACTIONS(3867), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1553), 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, - [57480] = 9, + ACTIONS(4019), 1, + aux_sym_preproc_else_token1, + ACTIONS(4021), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4057), 1, + aux_sym_preproc_if_token2, + ACTIONS(4023), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1450), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1993), 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, + [41422] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(3271), 1, + anon_sym_LPAREN2, + ACTIONS(3273), 1, + anon_sym_STAR, + STATE(1461), 1, + sym__field_declarator, + STATE(1890), 1, + sym_ms_based_modifier, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [41451] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3912), 1, + aux_sym_preproc_if_token2, + ACTIONS(3946), 1, + sym_identifier, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3861), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - ACTIONS(3869), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1357), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - ACTIONS(3863), 2, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1821), 3, + STATE(1945), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57511] = 8, + [41482] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3849), 1, + ACTIONS(4019), 1, aux_sym_preproc_else_token1, - ACTIONS(3851), 1, + ACTIONS(4021), 1, aux_sym_preproc_elif_token1, - ACTIONS(3871), 1, + ACTIONS(4059), 1, aux_sym_preproc_if_token2, - ACTIONS(3853), 2, + ACTIONS(4023), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1414), 2, + STATE(1358), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1830), 3, + STATE(1948), 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, - [57540] = 5, + [41511] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3946), 1, + sym_identifier, + ACTIONS(4051), 1, + aux_sym_preproc_else_token1, + ACTIONS(4053), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4061), 1, + aux_sym_preproc_if_token2, + STATE(1373), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1937), 1, + sym_enumerator, + ACTIONS(4055), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2010), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [41542] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3689), 3, + ACTIONS(3857), 3, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, - STATE(1269), 3, + STATE(1303), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3687), 4, + ACTIONS(3855), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [57563] = 8, + [41565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3876), 1, - aux_sym_preproc_if_token1, - ACTIONS(3882), 1, - sym_preproc_directive, - ACTIONS(3885), 1, - anon_sym_RBRACE, - ACTIONS(3879), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1937), 2, - sym_preproc_call, - sym_enumerator, - STATE(1332), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [57592] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3889), 2, - anon_sym___attribute, + ACTIONS(3857), 1, anon_sym_LBRACK, - STATE(1277), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3887), 6, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(1366), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3855), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [57615] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3859), 1, - aux_sym_preproc_else_token1, - ACTIONS(3861), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3891), 1, - aux_sym_preproc_if_token2, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, - sym_enumerator, - ACTIONS(3863), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1905), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57646] = 8, + anon_sym_LBRACK_LBRACK, + [41590] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3895), 1, + ACTIONS(4065), 1, anon_sym___attribute, - STATE(1397), 1, + STATE(1457), 1, sym_parameter_list, - STATE(1358), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3893), 4, + ACTIONS(4063), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [57675] = 5, + [41619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3845), 1, sym_identifier, - ACTIONS(3683), 3, + ACTIONS(3873), 3, anon_sym___attribute__, anon_sym___attribute, anon_sym_LBRACK, - STATE(1269), 3, + STATE(1303), 3, sym_preproc_call_expression, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3681), 4, + ACTIONS(3871), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [57698] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, - anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(1433), 1, - sym__declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [57727] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3845), 1, - anon_sym_LBRACK, - ACTIONS(3897), 1, - anon_sym_COMMA, - ACTIONS(3901), 1, - anon_sym___attribute, - STATE(1397), 1, - sym_parameter_list, - STATE(1500), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(3899), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1358), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [57760] = 9, + [41642] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3861), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - ACTIONS(3903), 1, + ACTIONS(4067), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1446), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - ACTIONS(3863), 2, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1949), 3, + STATE(1827), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57791] = 8, + [41673] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3849), 1, + ACTIONS(4019), 1, aux_sym_preproc_else_token1, - ACTIONS(3851), 1, + ACTIONS(4021), 1, aux_sym_preproc_elif_token1, - ACTIONS(3905), 1, + ACTIONS(4069), 1, aux_sym_preproc_if_token2, - ACTIONS(3853), 2, + ACTIONS(4023), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1414), 2, + STATE(1450), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1828), 3, + STATE(1870), 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, - [57820] = 8, + [41702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(1920), 1, + anon_sym___based, + ACTIONS(3003), 1, + sym_identifier, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, - anon_sym_LBRACK, - ACTIONS(3909), 1, - anon_sym___attribute, - STATE(1397), 1, - sym_parameter_list, - STATE(1358), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3907), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [57849] = 9, + ACTIONS(3267), 1, + anon_sym_STAR, + STATE(1482), 1, + sym__declarator, + STATE(1944), 1, + sym_ms_based_modifier, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [41731] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3906), 1, aux_sym_preproc_if_token2, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3861), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - STATE(1339), 1, + STATE(1367), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - ACTIONS(3863), 2, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1836), 3, + STATE(1954), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [57880] = 8, + [41762] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3849), 1, + ACTIONS(4019), 1, aux_sym_preproc_else_token1, - ACTIONS(3851), 1, + ACTIONS(4021), 1, aux_sym_preproc_elif_token1, - ACTIONS(3911), 1, + ACTIONS(4071), 1, aux_sym_preproc_if_token2, - ACTIONS(3853), 2, + ACTIONS(4023), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1340), 2, + STATE(1368), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1838), 3, + STATE(1961), 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, - [57909] = 8, + [41791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3269), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3271), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3273), 1, anon_sym_STAR, - STATE(1416), 1, - sym__declarator, - STATE(1900), 1, + STATE(1351), 1, + sym__field_declarator, + STATE(1890), 1, sym_ms_based_modifier, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [57938] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3764), 1, - sym_identifier, - ACTIONS(3859), 1, - aux_sym_preproc_else_token1, - ACTIONS(3861), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3913), 1, - aux_sym_preproc_if_token2, - STATE(1329), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, - sym_enumerator, - ACTIONS(3863), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1853), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [57969] = 9, + STATE(1414), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [41820] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3861), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - ACTIONS(3915), 1, + ACTIONS(4073), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1446), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - ACTIONS(3863), 2, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1799), 3, + STATE(1935), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [58000] = 8, + [41851] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3896), 1, sym_identifier, - ACTIONS(3849), 1, + ACTIONS(4019), 1, aux_sym_preproc_else_token1, - ACTIONS(3851), 1, + ACTIONS(4021), 1, aux_sym_preproc_elif_token1, - ACTIONS(3917), 1, + ACTIONS(4075), 1, aux_sym_preproc_if_token2, - ACTIONS(3853), 2, + ACTIONS(4023), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1414), 2, + STATE(1450), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1908), 3, + STATE(1941), 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, - [58029] = 8, + [41880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1399), 1, + STATE(1452), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58058] = 8, + [41909] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(2819), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3103), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1412), 1, + STATE(1443), 1, sym__declarator, - STATE(1900), 1, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1300), 5, + STATE(1326), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [58087] = 8, + [41938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, - anon_sym___based, - ACTIONS(2819), 1, - sym_identifier, - ACTIONS(3103), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3105), 1, - anon_sym_STAR, - STATE(1427), 1, - sym__declarator, - STATE(1900), 1, - sym_ms_based_modifier, - STATE(1300), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [58116] = 9, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4079), 1, + anon_sym___attribute, + STATE(1457), 1, + sym_parameter_list, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4077), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [41967] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3859), 1, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3861), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - ACTIONS(3919), 1, + ACTIONS(4081), 1, aux_sym_preproc_if_token2, - STATE(1346), 1, + STATE(1382), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - ACTIONS(3863), 2, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1894), 3, + STATE(2026), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [58147] = 8, + [41998] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1441), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1453), 1, + sym__declarator, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1382), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [58176] = 8, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [42027] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4085), 1, + anon_sym___attribute, + STATE(1457), 1, + sym_parameter_list, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4083), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [42056] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1819), 1, + ACTIONS(1920), 1, anon_sym___based, - ACTIONS(3097), 1, + ACTIONS(3003), 1, sym_identifier, - ACTIONS(3099), 1, + ACTIONS(3265), 1, anon_sym_LPAREN2, - ACTIONS(3101), 1, + ACTIONS(3267), 1, anon_sym_STAR, - STATE(1320), 1, - sym__field_declarator, - STATE(1990), 1, + STATE(1437), 1, + sym__declarator, + STATE(1944), 1, sym_ms_based_modifier, - STATE(1382), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [58205] = 8, + STATE(1326), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [42085] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(3849), 1, + ACTIONS(4051), 1, aux_sym_preproc_else_token1, - ACTIONS(3851), 1, + ACTIONS(4053), 1, aux_sym_preproc_elif_token1, - ACTIONS(3921), 1, + ACTIONS(4087), 1, aux_sym_preproc_if_token2, - ACTIONS(3853), 2, + STATE(1446), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1937), 1, + sym_enumerator, + ACTIONS(4055), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(1324), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1860), 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, - [58234] = 8, + STATE(1936), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [42116] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, + anon_sym_LBRACK, + ACTIONS(4089), 1, + anon_sym_COMMA, + ACTIONS(4093), 1, + anon_sym___attribute, + STATE(1457), 1, + sym_parameter_list, + STATE(1535), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4091), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4097), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(1306), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4095), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [42171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + anon_sym_LBRACK, + STATE(1567), 1, + sym_gnu_asm_input_operand, + STATE(1934), 1, + sym_string_literal, + ACTIONS(4099), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42195] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3762), 1, - anon_sym___attribute, - STATE(1281), 1, + ACTIONS(4103), 1, + anon_sym_LPAREN2, + ACTIONS(4105), 1, + anon_sym_EQ, + STATE(132), 1, + sym_compound_statement, + STATE(969), 1, + sym__old_style_parameter_list, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3760), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [58262] = 10, + [42227] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(4103), 1, anon_sym_LPAREN2, - ACTIONS(3925), 1, + ACTIONS(4105), 1, anon_sym_EQ, - STATE(339), 1, + STATE(305), 1, sym_compound_statement, - STATE(940), 1, + STATE(969), 1, sym__old_style_parameter_list, - STATE(1260), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58294] = 8, + [42259] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3929), 1, + ACTIONS(3934), 1, anon_sym___attribute, - STATE(1397), 1, + STATE(1314), 1, sym_parameter_list, - STATE(1358), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3927), 3, + ACTIONS(3932), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym___attribute__, - [58322] = 5, + [42287] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3933), 2, - anon_sym___attribute, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(1277), 2, + ACTIONS(3926), 1, + anon_sym___attribute, + STATE(1314), 1, + sym_parameter_list, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3931), 5, + ACTIONS(3924), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - [58344] = 8, + [42315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3754), 1, + ACTIONS(3922), 1, anon_sym___attribute, - STATE(1281), 1, + STATE(1314), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3752), 3, + ACTIONS(3916), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [58372] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 1, - anon_sym_LBRACK, - STATE(1541), 1, - sym_gnu_asm_output_operand, - STATE(1972), 1, - sym_string_literal, - ACTIONS(3935), 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, - [58396] = 10, + [42343] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(4103), 1, anon_sym_LPAREN2, - ACTIONS(3925), 1, + ACTIONS(4105), 1, anon_sym_EQ, - STATE(261), 1, + STATE(295), 1, sym_compound_statement, - STATE(940), 1, + STATE(969), 1, sym__old_style_parameter_list, - STATE(1260), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58428] = 10, + [42375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3925), 1, - anon_sym_EQ, - STATE(124), 1, - sym_compound_statement, - STATE(940), 1, - sym__old_style_parameter_list, - STATE(1260), 1, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(3930), 1, + anon_sym___attribute, + STATE(1314), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58460] = 5, + ACTIONS(3928), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [42403] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, + ACTIONS(3956), 1, anon_sym_LBRACK, - ACTIONS(3941), 1, + ACTIONS(4109), 1, anon_sym___asm, - ACTIONS(3780), 4, + ACTIONS(3954), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3939), 4, + ACTIONS(4107), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [58482] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN2, - ACTIONS(3925), 1, - anon_sym_EQ, - STATE(288), 1, - sym_compound_statement, - STATE(940), 1, - sym__old_style_parameter_list, - STATE(1260), 1, - sym_parameter_list, - STATE(1289), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [58514] = 6, + [42425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, + ACTIONS(4113), 1, anon_sym___attribute__, - ACTIONS(3948), 1, + ACTIONS(4116), 1, anon_sym___attribute, - ACTIONS(3951), 1, + ACTIONS(4119), 1, anon_sym___asm, - STATE(1365), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3943), 5, + ACTIONS(4111), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [58538] = 8, + [42449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3750), 1, + ACTIONS(4123), 1, anon_sym___attribute, - STATE(1281), 1, + STATE(1457), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3744), 3, + ACTIONS(4121), 3, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, - [58566] = 8, + [42477] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3758), 1, - anon_sym___attribute, - STATE(1281), 1, + ACTIONS(4103), 1, + anon_sym_LPAREN2, + ACTIONS(4105), 1, + anon_sym_EQ, + STATE(342), 1, + sym_compound_statement, + STATE(969), 1, + sym__old_style_parameter_list, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3756), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [58594] = 6, + [42509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3955), 1, + ACTIONS(4127), 1, anon_sym_LBRACK, - STATE(1539), 1, - sym_gnu_asm_input_operand, - STATE(1846), 1, + STATE(1559), 1, + sym_gnu_asm_output_operand, + STATE(2007), 1, sym_string_literal, - ACTIONS(3953), 2, + ACTIONS(4125), 2, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58618] = 6, + [42533] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(3959), 1, - anon_sym___asm, - STATE(1365), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3957), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [58641] = 6, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(554), 1, + anon_sym_LBRACE, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(4105), 1, + anon_sym_EQ, + STATE(295), 1, + sym_compound_statement, + STATE(1298), 1, + sym_parameter_list, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(3691), 1, + ACTIONS(3859), 1, anon_sym___asm, - STATE(1365), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(3685), 4, + ACTIONS(3853), 4, anon_sym_COMMA, anon_sym_SEMI, anon_sym_asm, anon_sym___asm__, - [58664] = 9, + [42585] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(430), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(4103), 1, anon_sym_LPAREN2, - STATE(295), 1, + STATE(141), 1, sym_compound_statement, - STATE(940), 1, + STATE(969), 1, sym__old_style_parameter_list, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58693] = 9, + [42614] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(430), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, - anon_sym_EQ, - STATE(288), 1, + ACTIONS(4103), 1, + anon_sym_LPAREN2, + STATE(326), 1, sym_compound_statement, - STATE(1260), 1, + STATE(969), 1, + sym__old_style_parameter_list, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58722] = 5, + [42643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, + ACTIONS(4025), 1, sym_identifier, - ACTIONS(3965), 1, - sym_system_lib_string, - STATE(2005), 2, - sym_preproc_call_expression, + STATE(689), 1, sym_string_literal, - ACTIONS(3963), 5, + STATE(1630), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58743] = 3, + [42664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3969), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(3967), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [58760] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, + ACTIONS(47), 1, + anon_sym_LBRACE, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(1942), 1, - anon_sym_STAR, - ACTIONS(2831), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(1452), 1, + ACTIONS(4105), 1, + anon_sym_EQ, + STATE(342), 1, + sym_compound_statement, + STATE(1298), 1, sym_parameter_list, - STATE(1551), 1, - sym__abstract_declarator, - STATE(1443), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - [58785] = 9, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [42693] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, - anon_sym_EQ, - STATE(261), 1, + ACTIONS(4103), 1, + anon_sym_LPAREN2, + STATE(310), 1, sym_compound_statement, - STATE(1260), 1, + STATE(969), 1, + sym__old_style_parameter_list, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58814] = 3, + [42722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3973), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(3971), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [58831] = 3, + ACTIONS(4025), 1, + sym_identifier, + STATE(689), 1, + sym_string_literal, + STATE(1632), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42743] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 1, + sym_identifier, + ACTIONS(4133), 1, + sym_system_lib_string, + STATE(1925), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4131), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 1, + sym_identifier, + ACTIONS(4137), 1, + sym_system_lib_string, + STATE(1952), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4131), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3977), 2, + ACTIONS(39), 1, anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4139), 1, anon_sym_LBRACK, - ACTIONS(3975), 7, + STATE(1492), 1, + sym_parameter_list, + ACTIONS(3995), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [58848] = 9, + STATE(1514), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [42812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3923), 1, + ACTIONS(4103), 1, anon_sym_LPAREN2, - STATE(132), 1, + STATE(318), 1, sym_compound_statement, - STATE(940), 1, + STATE(969), 1, sym__old_style_parameter_list, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58877] = 9, + [42841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4141), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [42858] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, + ACTIONS(4105), 1, anon_sym_EQ, - STATE(124), 1, + STATE(132), 1, sym_compound_statement, - STATE(1260), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [58906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3865), 1, - sym_identifier, - STATE(663), 1, - sym_string_literal, - STATE(1600), 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, - [58927] = 3, + [42887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3981), 2, + ACTIONS(4147), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3979), 7, + ACTIONS(4145), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109649,49 +114314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [58944] = 5, + [42904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3983), 1, + ACTIONS(4025), 1, sym_identifier, - ACTIONS(3985), 1, - sym_system_lib_string, - STATE(1884), 2, - sym_preproc_call_expression, + STATE(689), 1, sym_string_literal, - ACTIONS(3963), 5, + STATE(1667), 2, + sym__string, + sym_concatenated_string, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [58965] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN2, - STATE(273), 1, - sym_compound_statement, - STATE(940), 1, - sym__old_style_parameter_list, - STATE(1254), 1, - sym_parameter_list, - STATE(1289), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [58994] = 3, + [42925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3989), 2, + ACTIONS(4151), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3987), 7, + ACTIONS(4149), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109699,13 +114344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59011] = 3, + [42942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 2, + ACTIONS(4155), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(3991), 7, + ACTIONS(4153), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109713,134 +114358,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59028] = 9, + [42959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3748), 1, - anon_sym_LBRACK, - ACTIONS(3925), 1, - anon_sym_EQ, - STATE(339), 1, - sym_compound_statement, - STATE(1260), 1, - sym_parameter_list, - STATE(1289), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59057] = 5, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(4159), 1, + anon_sym___asm, + STATE(1394), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4157), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [42982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(4161), 1, sym_identifier, - ACTIONS(3997), 1, + ACTIONS(4163), 1, sym_system_lib_string, - STATE(1774), 2, + STATE(1881), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3963), 5, + ACTIONS(4131), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59078] = 5, + [43003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(4165), 1, sym_identifier, - STATE(663), 1, + ACTIONS(4167), 1, + sym_system_lib_string, + STATE(1889), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1566), 2, - sym__string, - sym_concatenated_string, - ACTIONS(99), 5, + ACTIONS(4131), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59099] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_LBRACK, - ACTIONS(3923), 1, - anon_sym_LPAREN2, - STATE(326), 1, - sym_compound_statement, - STATE(940), 1, - sym__old_style_parameter_list, - STATE(1254), 1, - sym_parameter_list, - STATE(1289), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4001), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(3999), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [59145] = 5, + [43024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4003), 1, + ACTIONS(4169), 1, sym_identifier, - ACTIONS(4005), 1, + ACTIONS(4171), 1, sym_system_lib_string, - STATE(1816), 2, + STATE(2067), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3963), 5, + ACTIONS(4131), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59166] = 8, + [43045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(4175), 2, anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(4007), 1, anon_sym_LBRACK, - STATE(1432), 1, - sym_parameter_list, - ACTIONS(3835), 2, + ACTIONS(4173), 7, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1481), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [59193] = 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [43062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 2, + ACTIONS(4179), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4009), 7, + ACTIONS(4177), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109848,29 +114451,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59210] = 5, + [43079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(4181), 1, sym_identifier, - STATE(663), 1, + ACTIONS(4183), 1, + sym_system_lib_string, + STATE(1853), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1648), 2, - sym__string, - sym_concatenated_string, - ACTIONS(99), 5, + ACTIONS(4131), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [59231] = 3, + [43100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4015), 2, + ACTIONS(4185), 1, + sym_identifier, + ACTIONS(4187), 1, + sym_system_lib_string, + STATE(1866), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4131), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43121] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2064), 1, + anon_sym_LPAREN2, + ACTIONS(2066), 1, + anon_sym_STAR, + ACTIONS(3015), 1, + anon_sym_LBRACK, + STATE(1481), 1, + sym_parameter_list, + STATE(1576), 1, + sym__abstract_declarator, + STATE(1478), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + [43146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4191), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4013), 7, + ACTIONS(4189), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109878,6542 +114515,6674 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [59248] = 3, + [43163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4019), 2, + ACTIONS(4195), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4017), 6, + ACTIONS(4193), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59264] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4023), 1, - anon_sym___attribute, - STATE(1432), 1, - sym_parameter_list, - ACTIONS(4021), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, anon_sym_COLON, - [59286] = 8, + [43180] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(139), 1, + ACTIONS(4105), 1, + anon_sym_EQ, + STATE(305), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59312] = 3, + [43209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 2, + ACTIONS(4197), 1, + sym_identifier, + ACTIONS(4199), 1, + sym_system_lib_string, + STATE(1949), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(4131), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4025), 6, + ACTIONS(4201), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59328] = 8, + anon_sym_COLON, + [43247] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(324), 1, + STATE(322), 1, sym_compound_statement, - STATE(1260), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59354] = 3, + [43273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4031), 2, + ACTIONS(4207), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4029), 6, + ACTIONS(4205), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59370] = 8, + [43289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_LBRACK, + STATE(1646), 1, + sym_gnu_asm_output_operand, + STATE(2007), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(4101), 1, + anon_sym_LBRACK, + STATE(1675), 1, + sym_gnu_asm_input_operand, + STATE(1934), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [43329] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(326), 1, + STATE(308), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59396] = 3, + [43355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4035), 2, + ACTIONS(4211), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4033), 6, + ACTIONS(4209), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59412] = 8, + [43371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(4215), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4213), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [43387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(271), 1, + STATE(262), 1, sym_compound_statement, - STATE(1260), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59438] = 8, + [43413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(132), 1, + STATE(310), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59464] = 3, + [43439] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4039), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(4037), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - [59480] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2493), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - sym_identifier, - STATE(733), 1, - sym_field_declaration_list, - STATE(1516), 1, - sym_attribute_specifier, - STATE(1653), 1, - sym_ms_declspec_modifier, - ACTIONS(35), 2, - anon_sym___attribute__, - anon_sym___attribute, - [59506] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4043), 1, - sym_identifier, - ACTIONS(4048), 1, - aux_sym_preproc_elif_token1, - STATE(1409), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, - sym_enumerator, - ACTIONS(4046), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [59528] = 3, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, + anon_sym_LBRACK, + STATE(303), 1, + sym_compound_statement, + STATE(1298), 1, + sym_parameter_list, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [43465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 2, + ACTIONS(4219), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4050), 6, + ACTIONS(4217), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59544] = 3, + [43481] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4056), 2, - anon_sym___attribute, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4139), 1, anon_sym_LBRACK, - ACTIONS(4054), 6, + ACTIONS(4223), 1, + anon_sym___attribute, + STATE(1492), 1, + sym_parameter_list, + ACTIONS(4221), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [59560] = 8, + anon_sym_COLON, + [43503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4227), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4225), 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, + [43521] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(430), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(300), 1, + STATE(293), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59586] = 8, + [43547] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(2617), 1, + anon_sym_LBRACE, + ACTIONS(4231), 1, + sym_identifier, + STATE(740), 1, + sym_field_declaration_list, + STATE(1526), 1, + sym_attribute_specifier, + STATE(1708), 1, + sym_ms_declspec_modifier, + ACTIONS(39), 2, + anon_sym___attribute__, + anon_sym___attribute, + [43573] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(430), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(295), 1, + STATE(318), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59612] = 5, + [43599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4233), 1, sym_identifier, - ACTIONS(4063), 1, + ACTIONS(4238), 1, aux_sym_preproc_elif_token1, - STATE(1414), 2, + STATE(1446), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1937), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4061), 4, + ACTIONS(4236), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [59632] = 3, + [43621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4067), 2, + ACTIONS(4242), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4065), 6, + ACTIONS(4240), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59648] = 8, + [43637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(279), 1, + STATE(139), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59674] = 3, + [43663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 2, + ACTIONS(4246), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4069), 6, + ACTIONS(4244), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59690] = 8, + [43679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4248), 1, + sym_identifier, + ACTIONS(4253), 1, + aux_sym_preproc_elif_token1, + STATE(1450), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4251), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [43699] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(133), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(129), 1, + STATE(326), 1, sym_compound_statement, - STATE(1260), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59716] = 8, + [43725] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(430), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(293), 1, + STATE(332), 1, sym_compound_statement, - STATE(1260), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59742] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4075), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4077), 1, - anon_sym_EQ, - ACTIONS(4073), 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, - [59760] = 5, + [43751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3937), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(149), 1, + anon_sym_LBRACE, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(1671), 1, - sym_gnu_asm_output_operand, - STATE(1972), 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, - [59780] = 8, + STATE(146), 1, + sym_compound_statement, + STATE(1297), 1, + sym_parameter_list, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [43777] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(378), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - STATE(273), 1, + STATE(141), 1, sym_compound_statement, - STATE(1254), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59806] = 6, + [43803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(4007), 1, + ACTIONS(4139), 1, anon_sym_LBRACK, - ACTIONS(4081), 1, + ACTIONS(4257), 1, anon_sym___attribute, - STATE(1432), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(4079), 4, + ACTIONS(4255), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_COLON, - [59828] = 6, + [43825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(4007), 1, + ACTIONS(4139), 1, anon_sym_LBRACK, - ACTIONS(4085), 1, + ACTIONS(4261), 1, anon_sym___attribute, - STATE(1432), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(4083), 4, + ACTIONS(4259), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_COLON, - [59850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3955), 1, - anon_sym_LBRACK, - STATE(1612), 1, - sym_gnu_asm_input_operand, - STATE(1846), 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, - [59870] = 3, + [43847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4089), 2, + ACTIONS(4265), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4087), 6, + ACTIONS(4263), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [59886] = 8, + [43863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(43), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(4269), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(334), 1, - sym_compound_statement, - STATE(1254), 1, - sym_parameter_list, - STATE(1289), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [59912] = 3, + ACTIONS(4267), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [43879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 1, + ACTIONS(4273), 2, anon_sym___attribute, - ACTIONS(4091), 6, + anon_sym_LBRACK, + ACTIONS(4271), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [59927] = 3, + anon_sym_LBRACK_LBRACK, + [43895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, + ACTIONS(4277), 2, anon_sym___attribute, - ACTIONS(4095), 6, + anon_sym_LBRACK, + ACTIONS(4275), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [43911] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3942), 1, anon_sym_LBRACK, - anon_sym_COLON, - [59942] = 7, + ACTIONS(4279), 1, + anon_sym_RPAREN, + STATE(1412), 1, + sym_parameter_list, + STATE(1352), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [43934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(4099), 1, + ACTIONS(4281), 1, anon_sym_RPAREN, - STATE(1397), 1, + STATE(1457), 1, sym_parameter_list, - STATE(1358), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [59965] = 4, + [43957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4283), 1, anon_sym_LPAREN2, - STATE(1431), 2, + STATE(1463), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4103), 4, + ACTIONS(4285), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [59982] = 3, + [43974] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym___attribute, - ACTIONS(4106), 6, + ACTIONS(105), 1, + anon_sym___asm, + ACTIONS(4288), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [59997] = 7, + ACTIONS(4290), 1, + anon_sym_SEMI, + STATE(1687), 1, + sym_gnu_asm_expression, + STATE(1690), 1, + aux_sym_declaration_repeat1, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + [43997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym___asm, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4294), 1, + anon_sym_SEMI, + STATE(1704), 1, + sym_gnu_asm_expression, + STATE(1705), 1, + aux_sym_declaration_repeat1, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + [44020] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym___asm, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4296), 1, + anon_sym_SEMI, + STATE(1648), 1, + sym_gnu_asm_expression, + STATE(1649), 1, + aux_sym_declaration_repeat1, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + [44043] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, - anon_sym_RPAREN, - STATE(1254), 1, + ACTIONS(4105), 1, + anon_sym_EQ, + STATE(1298), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60020] = 7, + [44066] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4114), 1, + ACTIONS(4298), 1, anon_sym_SEMI, - STATE(1614), 1, - sym_gnu_asm_expression, - STATE(1615), 1, + STATE(1611), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + STATE(1719), 1, + sym_gnu_asm_expression, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60043] = 3, + [44089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, + anon_sym_LBRACK, + ACTIONS(4300), 1, + anon_sym_RPAREN, + STATE(1297), 1, + sym_parameter_list, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [44112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4120), 1, + ACTIONS(4304), 1, anon_sym___attribute, - ACTIONS(4118), 6, + ACTIONS(4302), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60058] = 3, + [44127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4306), 1, + anon_sym_LPAREN2, + STATE(1496), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4308), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [44144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4312), 1, anon_sym___attribute, - ACTIONS(4122), 6, + ACTIONS(4310), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60073] = 7, + [44159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4316), 1, + anon_sym___attribute, + ACTIONS(4314), 6, anon_sym_COMMA, - ACTIONS(4126), 1, - anon_sym_SEMI, - STATE(1624), 1, - sym_gnu_asm_expression, - STATE(1625), 1, - aux_sym_declaration_repeat1, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - [60096] = 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [44174] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4128), 1, + ACTIONS(4318), 1, anon_sym_SEMI, - STATE(1627), 1, + STATE(1672), 1, sym_gnu_asm_expression, - STATE(1628), 1, + STATE(1674), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60119] = 7, + [44197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4322), 1, + anon_sym___attribute, + ACTIONS(4320), 6, anon_sym_COMMA, - ACTIONS(4130), 1, - anon_sym_SEMI, - STATE(1633), 1, - sym_gnu_asm_expression, - STATE(1634), 1, - aux_sym_declaration_repeat1, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - [60142] = 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [44212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4326), 1, + anon_sym___attribute, + ACTIONS(4324), 6, anon_sym_COMMA, - ACTIONS(4132), 1, - anon_sym_SEMI, - STATE(1636), 1, - sym_gnu_asm_expression, - STATE(1637), 1, - aux_sym_declaration_repeat1, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - [60165] = 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [44227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(4330), 1, + anon_sym___attribute, + ACTIONS(4328), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3798), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4134), 1, + anon_sym_COLON, + [44242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4334), 1, + anon_sym___attribute, + ACTIONS(4332), 6, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1396), 1, - sym_parameter_list, - STATE(1333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60188] = 7, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [44257] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(3942), 1, anon_sym_LBRACK, - ACTIONS(4136), 1, + ACTIONS(4336), 1, anon_sym_RPAREN, - STATE(1254), 1, + STATE(1412), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60211] = 3, + [44280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4140), 1, + ACTIONS(4340), 1, anon_sym___attribute, - ACTIONS(4138), 6, + ACTIONS(4338), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60226] = 7, + [44295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4344), 1, + anon_sym___attribute, + ACTIONS(4342), 6, anon_sym_COMMA, - ACTIONS(4142), 1, - anon_sym_SEMI, - STATE(1650), 1, - sym_gnu_asm_expression, - STATE(1651), 1, - aux_sym_declaration_repeat1, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - [60249] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1980), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(4144), 1, - anon_sym_EQ, - ACTIONS(4146), 1, - anon_sym_DOT, - STATE(1461), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [60268] = 7, + anon_sym_COLON, + [44310] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3845), 1, + ACTIONS(3920), 1, anon_sym_LBRACK, - ACTIONS(4148), 1, + ACTIONS(4346), 1, anon_sym_RPAREN, - STATE(1397), 1, + STATE(1297), 1, sym_parameter_list, - STATE(1358), 2, + STATE(1311), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60291] = 7, + [44333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym___attribute, + ACTIONS(4348), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_COLON, + [44348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4150), 1, + ACTIONS(4352), 1, anon_sym_SEMI, - STATE(1581), 1, + STATE(1711), 1, sym_gnu_asm_expression, - STATE(1582), 1, + STATE(1712), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60314] = 7, + [44371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_COMMA, + ACTIONS(4358), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4354), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [44388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4152), 1, + ACTIONS(4360), 1, anon_sym_SEMI, - STATE(1589), 1, + STATE(1656), 1, sym_gnu_asm_expression, - STATE(1590), 1, + STATE(1658), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60337] = 3, + [44411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4364), 1, anon_sym___attribute, - ACTIONS(4154), 6, + ACTIONS(4362), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60352] = 7, + [44426] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LBRACK, + ACTIONS(4369), 1, + anon_sym_EQ, + ACTIONS(4371), 1, + anon_sym_DOT, + STATE(1488), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [44445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4158), 1, + ACTIONS(4374), 1, anon_sym_SEMI, - STATE(1662), 1, + STATE(1604), 1, sym_gnu_asm_expression, - STATE(1663), 1, + STATE(1605), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60375] = 4, + [44468] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(105), 1, + anon_sym___asm, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4164), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4160), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [60392] = 3, + ACTIONS(4376), 1, + anon_sym_SEMI, + STATE(1607), 1, + sym_gnu_asm_expression, + STATE(1608), 1, + aux_sym_declaration_repeat1, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + [44491] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4168), 1, - anon_sym___attribute, - ACTIONS(4166), 6, + ACTIONS(105), 1, + anon_sym___asm, + ACTIONS(4288), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60407] = 3, + ACTIONS(4378), 1, + anon_sym_SEMI, + STATE(1623), 1, + sym_gnu_asm_expression, + STATE(1624), 1, + aux_sym_declaration_repeat1, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + [44514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(4382), 1, anon_sym___attribute, - ACTIONS(4170), 6, + ACTIONS(4380), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60422] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4174), 1, - anon_sym_LPAREN2, - STATE(1431), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4176), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [60439] = 7, + [44529] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4178), 1, + ACTIONS(4384), 1, anon_sym_SEMI, - STATE(1613), 1, + STATE(1615), 1, sym_gnu_asm_expression, - STATE(1617), 1, + STATE(1616), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4180), 1, - anon_sym_LPAREN2, - STATE(1454), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4176), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [60479] = 7, + [44552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(4047), 1, anon_sym_LBRACK, - ACTIONS(3925), 1, - anon_sym_EQ, - STATE(1260), 1, + ACTIONS(4386), 1, + anon_sym_RPAREN, + STATE(1457), 1, sym_parameter_list, - STATE(1289), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [60502] = 7, + [44575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(105), 1, anon_sym___asm, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4182), 1, + ACTIONS(4388), 1, anon_sym_SEMI, - STATE(1661), 1, + STATE(1618), 1, sym_gnu_asm_expression, - STATE(1664), 1, + STATE(1619), 1, aux_sym_declaration_repeat1, - ACTIONS(4116), 2, + ACTIONS(4292), 2, anon_sym_asm, anon_sym___asm__, - [60525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4186), 1, - anon_sym___attribute, - ACTIONS(4184), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60540] = 7, + [44598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(4390), 1, anon_sym_LPAREN2, - ACTIONS(3798), 1, - anon_sym_LBRACK, - ACTIONS(4188), 1, - anon_sym_RPAREN, - STATE(1396), 1, - sym_parameter_list, - STATE(1333), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60563] = 5, + STATE(1463), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4308), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [44615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 1, + ACTIONS(2054), 1, anon_sym_LBRACK, - ACTIONS(4193), 1, + ACTIONS(4392), 1, anon_sym_EQ, - ACTIONS(4195), 1, + ACTIONS(4394), 1, anon_sym_DOT, - STATE(1461), 4, + STATE(1488), 4, sym_subscript_designator, sym_subscript_range_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [60582] = 3, + [44634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(4398), 1, anon_sym___attribute, - ACTIONS(4198), 6, + ACTIONS(4396), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_COLON, - [60597] = 3, + [44649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(4202), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3676), 1, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4208), 1, - anon_sym___attribute, - ACTIONS(4206), 6, + ACTIONS(4400), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_COLON, - [60627] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4210), 1, - anon_sym_SEMI, - STATE(1608), 1, - sym_gnu_asm_expression, - STATE(1609), 1, - aux_sym_declaration_repeat1, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - [60650] = 3, + STATE(1394), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [44667] = 3, ACTIONS(3), 1, sym_comment, - STATE(2012), 1, + STATE(639), 1, sym_string_literal, - ACTIONS(99), 5, + ACTIONS(111), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [60664] = 3, + [44681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4212), 2, + ACTIONS(4402), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4214), 4, + ACTIONS(4404), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60678] = 3, + [44695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 2, + ACTIONS(4406), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4218), 4, + ACTIONS(4408), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60692] = 5, + [44709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(4007), 1, - anon_sym_LBRACK, - STATE(1432), 1, - sym_parameter_list, - ACTIONS(4220), 3, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(4410), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [60710] = 5, + STATE(1394), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [44727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(4007), 1, - anon_sym_LBRACK, - STATE(1432), 1, - sym_parameter_list, - ACTIONS(4222), 3, + ACTIONS(105), 1, + anon_sym___asm, + STATE(1795), 1, + sym_gnu_asm_expression, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4412), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [60728] = 3, + anon_sym_SEMI, + [44745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4224), 2, - anon_sym_RBRACE, + ACTIONS(4238), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4236), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - ACTIONS(4226), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [60742] = 3, + [44759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 2, + ACTIONS(4414), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4230), 4, + ACTIONS(4416), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60756] = 3, + [44773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 2, + ACTIONS(4418), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4234), 4, + ACTIONS(4420), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60770] = 5, + [44787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(4007), 1, + ACTIONS(4139), 1, anon_sym_LBRACK, - STATE(1432), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(4236), 3, + ACTIONS(4422), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60788] = 3, + [44805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4424), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4240), 4, + ACTIONS(4426), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60802] = 3, + [44819] = 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, - [60816] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - STATE(1744), 1, - sym_gnu_asm_expression, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4242), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [60834] = 5, + STATE(1880), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4244), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1365), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [60852] = 3, + ACTIONS(4428), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4430), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [44847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 2, + ACTIONS(4428), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4240), 4, + ACTIONS(4430), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60866] = 3, + [44861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 2, + ACTIONS(4432), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4248), 4, + ACTIONS(4434), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60880] = 5, + [44875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4244), 2, + ACTIONS(4400), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1365), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [60898] = 3, + [44893] = 5, ACTIONS(3), 1, sym_comment, - STATE(621), 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, - [60912] = 5, + ACTIONS(105), 1, + anon_sym___asm, + STATE(1733), 1, + sym_gnu_asm_expression, + ACTIONS(4292), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4436), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [44911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(4007), 1, + ACTIONS(4139), 1, anon_sym_LBRACK, - STATE(1432), 1, + STATE(1492), 1, sym_parameter_list, - ACTIONS(4250), 3, + ACTIONS(4438), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [60930] = 5, + [44929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym___asm, - STATE(1701), 1, - sym_gnu_asm_expression, - ACTIONS(4116), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(4252), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [60948] = 3, + STATE(1973), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 2, + ACTIONS(4418), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4254), 4, + ACTIONS(4420), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60962] = 3, + [44957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 2, + STATE(1884), 1, + sym_string_literal, + ACTIONS(111), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [44971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4440), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4258), 4, + ACTIONS(4442), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [60976] = 6, + [44985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(3920), 1, + anon_sym_LBRACK, + STATE(1298), 1, + sym_parameter_list, + STATE(1311), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [45005] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 1, anon_sym_LPAREN2, - ACTIONS(3748), 1, + ACTIONS(4139), 1, anon_sym_LBRACK, - STATE(1260), 1, + STATE(1492), 1, sym_parameter_list, - STATE(1289), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60996] = 3, + ACTIONS(4444), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [45023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 2, + ACTIONS(4041), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4234), 4, + ACTIONS(4446), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [61010] = 5, + [45037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4260), 2, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4139), 1, + anon_sym_LBRACK, + STATE(1492), 1, + sym_parameter_list, + ACTIONS(4448), 3, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1365), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61028] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1786), 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, - [61042] = 5, + anon_sym_COLON, + [45055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + ACTIONS(4452), 1, + anon_sym_COLON_COLON, + STATE(1780), 1, + sym_argument_list, + ACTIONS(4450), 2, anon_sym_COMMA, - ACTIONS(4267), 1, - anon_sym___attribute, - STATE(1491), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4265), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [61059] = 5, + anon_sym_RBRACK_RBRACK, + [45072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4269), 1, - anon_sym_SEMI, - STATE(1365), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61076] = 5, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(2617), 1, + anon_sym_LBRACE, + ACTIONS(4454), 1, + sym_identifier, + STATE(742), 1, + sym_field_declaration_list, + STATE(1641), 1, + sym_ms_declspec_modifier, + [45091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4271), 1, + ACTIONS(4456), 1, anon_sym_SEMI, - STATE(1501), 2, + STATE(1536), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(4273), 1, - aux_sym_preproc_if_token2, - STATE(1451), 1, - sym_enumerator, - STATE(1523), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1560), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - [61112] = 5, + [45108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4275), 1, + ACTIONS(4458), 1, anon_sym_SEMI, - STATE(1365), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61129] = 5, + [45125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4277), 1, + ACTIONS(4460), 1, anon_sym_SEMI, - STATE(1497), 2, + STATE(1543), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61146] = 5, + [45142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4279), 1, + ACTIONS(4462), 1, anon_sym_SEMI, - STATE(1365), 2, + STATE(1528), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61163] = 5, + [45159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4281), 1, + ACTIONS(4464), 1, anon_sym_SEMI, - STATE(1365), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61180] = 2, + [45176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 5, + ACTIONS(4466), 5, anon_sym_LPAREN2, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [61191] = 5, + [45187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(4468), 1, anon_sym_COMMA, - ACTIONS(4287), 1, + ACTIONS(4473), 1, anon_sym___attribute, - STATE(1491), 1, + STATE(1533), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(4285), 2, + ACTIONS(4471), 2, anon_sym_SEMI, anon_sym___attribute__, - [61208] = 5, + [45204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3936), 1, + anon_sym_COMMA, + ACTIONS(4477), 1, anon_sym___attribute, - ACTIONS(3504), 1, + STATE(1544), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4475), 2, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(4289), 1, + [45221] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 1, + anon_sym_COMMA, + ACTIONS(4481), 1, + anon_sym___attribute, + STATE(1533), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4479), 2, anon_sym_SEMI, - STATE(1365), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61225] = 5, + anon_sym___attribute__, + [45238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4291), 1, + ACTIONS(4483), 1, anon_sym_SEMI, - STATE(1495), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61242] = 5, + [45255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4293), 1, + ACTIONS(4485), 1, anon_sym_SEMI, - STATE(1498), 2, + STATE(1549), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61259] = 5, + [45272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, + ACTIONS(4487), 1, anon_sym_COMMA, - ACTIONS(4297), 1, + ACTIONS(4492), 1, anon_sym___attribute, - STATE(1509), 1, + STATE(1538), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4295), 2, + ACTIONS(4490), 2, anon_sym_SEMI, anon_sym___attribute__, - [61276] = 5, + [45289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym___asm, + ACTIONS(4494), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [45302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3936), 1, + anon_sym_COMMA, + ACTIONS(4500), 1, anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4299), 1, + STATE(1538), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4498), 2, anon_sym_SEMI, - STATE(1365), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [61293] = 6, + anon_sym___attribute__, + [45319] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(2493), 1, + ACTIONS(2617), 1, anon_sym_LBRACE, - ACTIONS(4301), 1, + ACTIONS(4502), 1, sym_identifier, - STATE(724), 1, + STATE(745), 1, sym_field_declaration_list, - STATE(1646), 1, + STATE(1637), 1, sym_ms_declspec_modifier, - [61312] = 5, + [45338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4303), 1, + ACTIONS(4504), 1, anon_sym_SEMI, - STATE(1365), 2, + STATE(1547), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61329] = 5, + [45355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4305), 1, + ACTIONS(4506), 1, anon_sym_SEMI, - STATE(1505), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61346] = 5, + [45372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(3936), 1, anon_sym_COMMA, - ACTIONS(4312), 1, + ACTIONS(4510), 1, anon_sym___attribute, - STATE(1509), 1, + STATE(1538), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4310), 2, + ACTIONS(4508), 2, anon_sym_SEMI, anon_sym___attribute__, - [61363] = 5, + [45389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4512), 1, + aux_sym_preproc_if_token2, + STATE(1485), 1, + sym_enumerator, + STATE(1581), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1594), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [45408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4314), 1, + ACTIONS(4514), 1, anon_sym_SEMI, - STATE(1517), 2, + STATE(1551), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61380] = 3, + [45425] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym___asm, - ACTIONS(4316), 4, - anon_sym_COMMA, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(4516), 1, anon_sym_SEMI, - anon_sym_asm, - anon_sym___asm__, - [61393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - ACTIONS(4322), 1, - anon_sym_COLON_COLON, - STATE(1699), 1, - sym_argument_list, - ACTIONS(4320), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61410] = 5, + STATE(1394), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [45442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4324), 1, + ACTIONS(4518), 1, anon_sym_SEMI, - STATE(1492), 2, + STATE(1394), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61427] = 5, + [45459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, - anon_sym_COMMA, - ACTIONS(4328), 1, + ACTIONS(39), 1, anon_sym___attribute, - STATE(1509), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4326), 2, - anon_sym_SEMI, + ACTIONS(3676), 1, anon_sym___attribute__, - [61444] = 5, + ACTIONS(4520), 1, + anon_sym_SEMI, + STATE(1394), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [45476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4330), 1, + ACTIONS(4522), 1, anon_sym_SEMI, - STATE(1507), 2, + STATE(1531), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61461] = 6, + [45493] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, - anon_sym___declspec, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(4332), 1, - sym_identifier, - STATE(729), 1, - sym_field_declaration_list, - STATE(1670), 1, - sym_ms_declspec_modifier, - [61480] = 5, + anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(4524), 1, + anon_sym_SEMI, + STATE(1394), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [45510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(39), 1, anon_sym___attribute, - ACTIONS(3504), 1, + ACTIONS(3676), 1, anon_sym___attribute__, - ACTIONS(4334), 1, + ACTIONS(4526), 1, anon_sym_SEMI, - STATE(1365), 2, + STATE(1548), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [61497] = 5, + [45527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, - anon_sym_COMMA, - ACTIONS(4338), 1, + ACTIONS(39), 1, anon_sym___attribute, - STATE(1504), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4336), 2, - anon_sym_SEMI, + ACTIONS(3676), 1, anon_sym___attribute__, - [61514] = 4, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4340), 1, - anon_sym_SQUOTE, - STATE(1530), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4342), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [61528] = 5, - ACTIONS(3446), 1, + ACTIONS(4528), 1, + anon_sym_SEMI, + STATE(1913), 1, + sym_attribute_specifier, + [45543] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4530), 1, anon_sym_DQUOTE, - ACTIONS(4346), 1, + ACTIONS(4532), 1, aux_sym_string_literal_token1, - ACTIONS(4348), 1, + ACTIONS(4535), 1, sym_escape_sequence, STATE(1554), 1, aux_sym_string_literal_repeat1, - [61544] = 5, + [45559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4538), 1, + anon_sym___except, + ACTIONS(4540), 1, + anon_sym___finally, + STATE(254), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [45573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(4544), 1, anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4350), 1, + ACTIONS(4542), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1897), 1, - sym_attribute_specifier, - [61560] = 4, - ACTIONS(3446), 1, + anon_sym___attribute__, + [45585] = 4, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4546), 1, anon_sym_SQUOTE, - STATE(1530), 1, + STATE(1557), 1, aux_sym_char_literal_repeat1, - ACTIONS(4342), 2, + ACTIONS(4548), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [61574] = 4, + [45599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(4354), 1, - aux_sym_preproc_if_token2, - STATE(1414), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61588] = 5, - ACTIONS(3446), 1, + ACTIONS(4551), 1, + anon_sym___except, + ACTIONS(4553), 1, + anon_sym___finally, + STATE(254), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [45613] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4555), 1, + anon_sym_COMMA, + STATE(1566), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4557), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [45627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 1, + anon_sym___except, + ACTIONS(4561), 1, + anon_sym___finally, + STATE(111), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [45641] = 5, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4563), 1, aux_sym_preproc_include_token2, - ACTIONS(4358), 1, + ACTIONS(4565), 1, anon_sym_LPAREN, - ACTIONS(4360), 1, + ACTIONS(4567), 1, sym_preproc_arg, - STATE(1705), 1, + STATE(1762), 1, sym_preproc_params, - [61604] = 5, - ACTIONS(3446), 1, + [45657] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4565), 1, anon_sym_LPAREN, - ACTIONS(4362), 1, + ACTIONS(4569), 1, aux_sym_preproc_include_token2, - ACTIONS(4364), 1, + ACTIONS(4571), 1, sym_preproc_arg, - STATE(1687), 1, + STATE(1777), 1, sym_preproc_params, - [61620] = 4, - ACTIONS(3), 1, + [45673] = 4, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3716), 1, - sym_identifier, - ACTIONS(4366), 1, - aux_sym_preproc_if_token2, - STATE(1523), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [61634] = 5, + ACTIONS(4573), 1, + anon_sym_SQUOTE, + STATE(1557), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4575), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [45687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4368), 1, + ACTIONS(4577), 1, + anon_sym_COMMA, + STATE(1585), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4579), 2, anon_sym_RPAREN, - STATE(1432), 1, - sym_parameter_list, - [61650] = 5, - ACTIONS(3446), 1, + anon_sym_COLON, + [45701] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4370), 1, - aux_sym_preproc_include_token2, - ACTIONS(4372), 1, - sym_preproc_arg, - STATE(1684), 1, - sym_preproc_params, - [61666] = 4, + ACTIONS(4581), 1, + anon_sym_DQUOTE, + ACTIONS(4583), 1, + aux_sym_string_literal_token1, + ACTIONS(4585), 1, + sym_escape_sequence, + STATE(1554), 1, + aux_sym_string_literal_repeat1, + [45717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4555), 1, anon_sym_COMMA, - STATE(1529), 1, + STATE(1579), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4587), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [45731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 1, + anon_sym_COMMA, + STATE(1588), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4377), 2, + ACTIONS(4591), 2, anon_sym_RPAREN, anon_sym_COLON, - [61680] = 4, - ACTIONS(3446), 1, + [45745] = 4, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4379), 1, + ACTIONS(4593), 1, anon_sym_SQUOTE, - STATE(1530), 1, + STATE(1557), 1, aux_sym_char_literal_repeat1, - ACTIONS(4381), 2, + ACTIONS(4575), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [61694] = 5, - ACTIONS(3446), 1, + [45759] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_DQUOTE, - ACTIONS(4386), 1, + ACTIONS(4583), 1, aux_sym_string_literal_token1, - ACTIONS(4388), 1, + ACTIONS(4585), 1, sym_escape_sequence, - STATE(1547), 1, - aux_sym_string_literal_repeat1, - [61710] = 5, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4390), 1, + ACTIONS(4595), 1, anon_sym_DQUOTE, - ACTIONS(4392), 1, - aux_sym_string_literal_token1, - ACTIONS(4394), 1, - sym_escape_sequence, - STATE(1520), 1, + STATE(1554), 1, aux_sym_string_literal_repeat1, - [61726] = 4, + [45775] = 5, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4565), 1, + anon_sym_LPAREN, + ACTIONS(4597), 1, + aux_sym_preproc_include_token2, + ACTIONS(4599), 1, + sym_preproc_arg, + STATE(1783), 1, + sym_preproc_params, + [45791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, - anon_sym_COMMA, - STATE(1540), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4398), 2, + ACTIONS(4601), 1, + anon_sym___except, + ACTIONS(4603), 1, + anon_sym___finally, + STATE(239), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [45805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4139), 1, + anon_sym_LBRACK, + ACTIONS(4605), 1, anon_sym_RPAREN, - anon_sym_COLON, - [61740] = 5, - ACTIONS(3446), 1, + STATE(1492), 1, + sym_parameter_list, + [45821] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4607), 1, + anon_sym___except, + ACTIONS(4609), 1, + anon_sym___finally, + STATE(212), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [45835] = 5, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4565), 1, anon_sym_LPAREN, - ACTIONS(4400), 1, + ACTIONS(4611), 1, aux_sym_preproc_include_token2, - ACTIONS(4402), 1, + ACTIONS(4613), 1, sym_preproc_arg, - STATE(1710), 1, + STATE(1747), 1, sym_preproc_params, - [61756] = 3, + [45851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 1, - anon_sym___attribute, - ACTIONS(4404), 3, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + STATE(1796), 1, + sym_argument_list, + ACTIONS(4615), 2, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [61768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4408), 1, - anon_sym_SEMI, - STATE(1873), 1, - sym_attribute_specifier, - [61784] = 5, + anon_sym_RBRACK_RBRACK, + [45865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_COMMA, - ACTIONS(4412), 1, + ACTIONS(3918), 1, + anon_sym_LPAREN2, + ACTIONS(4139), 1, + anon_sym_LBRACK, + ACTIONS(4617), 1, anon_sym_RPAREN, - STATE(1594), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1601), 1, - aux_sym_parameter_list_repeat1, - [61800] = 5, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4346), 1, - aux_sym_string_literal_token1, - ACTIONS(4348), 1, - sym_escape_sequence, - ACTIONS(4414), 1, - anon_sym_DQUOTE, - STATE(1554), 1, - aux_sym_string_literal_repeat1, - [61816] = 4, + STATE(1492), 1, + sym_parameter_list, + [45881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, + ACTIONS(4619), 1, anon_sym_COMMA, - STATE(1552), 1, + STATE(1577), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4418), 2, + ACTIONS(4622), 2, anon_sym_RPAREN, anon_sym_COLON, - [61830] = 4, + [45895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_COMMA, - STATE(1540), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4423), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61844] = 4, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(4624), 1, + anon_sym_SEMI, + STATE(1843), 1, + sym_attribute_specifier, + [45911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4626), 1, anon_sym_COMMA, - STATE(1555), 1, + STATE(1579), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4427), 2, + ACTIONS(4629), 2, anon_sym_RPAREN, anon_sym_COLON, - [61858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4429), 1, - anon_sym___except, - ACTIONS(4431), 1, - anon_sym___finally, - STATE(249), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61872] = 4, - ACTIONS(3), 1, + [45925] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4433), 1, - anon_sym___except, - ACTIONS(4435), 1, - anon_sym___finally, - STATE(196), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61886] = 5, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4358), 1, + ACTIONS(4565), 1, anon_sym_LPAREN, - ACTIONS(4437), 1, + ACTIONS(4631), 1, aux_sym_preproc_include_token2, - ACTIONS(4439), 1, + ACTIONS(4633), 1, sym_preproc_arg, - STATE(1717), 1, + STATE(1736), 1, sym_preproc_params, - [61902] = 4, + [45941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - STATE(1735), 1, - sym_argument_list, - ACTIONS(4441), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [61916] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(4273), 1, + ACTIONS(4635), 1, aux_sym_preproc_if_token2, - STATE(1560), 1, + STATE(1446), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - [61932] = 5, - ACTIONS(3446), 1, + [45957] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4346), 1, + ACTIONS(4637), 1, + anon_sym_DQUOTE, + ACTIONS(4639), 1, aux_sym_string_literal_token1, - ACTIONS(4348), 1, + ACTIONS(4641), 1, sym_escape_sequence, - ACTIONS(4443), 1, - anon_sym_DQUOTE, - STATE(1554), 1, + STATE(1569), 1, aux_sym_string_literal_repeat1, - [61948] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 1, - anon_sym___except, - ACTIONS(4447), 1, - anon_sym___finally, - STATE(249), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4449), 1, - anon_sym_COMMA, - STATE(1549), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4452), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [61976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4454), 1, - anon_sym___except, - ACTIONS(4456), 1, - anon_sym___finally, - STATE(106), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [61990] = 5, - ACTIONS(3), 1, + [45973] = 4, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_LPAREN2, - ACTIONS(4007), 1, - anon_sym_LBRACK, - ACTIONS(4458), 1, - anon_sym_RPAREN, - STATE(1432), 1, - sym_parameter_list, - [62006] = 4, + ACTIONS(4643), 1, + anon_sym_SQUOTE, + STATE(1557), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4575), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [45987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - anon_sym_COMMA, - STATE(1529), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4460), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [62020] = 4, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4645), 1, + aux_sym_preproc_if_token2, + STATE(1594), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [46001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4577), 1, anon_sym_COMMA, - STATE(1533), 1, + STATE(1596), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4462), 2, + ACTIONS(4647), 2, anon_sym_RPAREN, anon_sym_COLON, - [62034] = 5, - ACTIONS(3446), 1, + [46015] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4649), 1, anon_sym_DQUOTE, - ACTIONS(4466), 1, + ACTIONS(4651), 1, aux_sym_string_literal_token1, - ACTIONS(4469), 1, + ACTIONS(4653), 1, sym_escape_sequence, - STATE(1554), 1, + STATE(1565), 1, aux_sym_string_literal_repeat1, - [62050] = 4, + [46031] = 5, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4565), 1, + anon_sym_LPAREN, + ACTIONS(4655), 1, + aux_sym_preproc_include_token2, + ACTIONS(4657), 1, + sym_preproc_arg, + STATE(1757), 1, + sym_preproc_params, + [46047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 1, + ACTIONS(4589), 1, anon_sym_COMMA, - STATE(1549), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4472), 2, + STATE(1577), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4659), 2, anon_sym_RPAREN, anon_sym_COLON, - [62064] = 4, + [46061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - anon_sym___except, - ACTIONS(4476), 1, - anon_sym___finally, - STATE(223), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [62078] = 5, - ACTIONS(3446), 1, + ACTIONS(4661), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_RPAREN, + STATE(1640), 1, + aux_sym_parameter_list_repeat1, + STATE(1659), 1, + aux_sym__old_style_parameter_list_repeat1, + [46077] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4665), 1, anon_sym_DQUOTE, - ACTIONS(4480), 1, + ACTIONS(4667), 1, aux_sym_string_literal_token1, - ACTIONS(4482), 1, + ACTIONS(4669), 1, sym_escape_sequence, - STATE(1538), 1, + STATE(1593), 1, aux_sym_string_literal_repeat1, - [62094] = 5, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - aux_sym_preproc_include_token2, - ACTIONS(4486), 1, - sym_preproc_arg, - STATE(1696), 1, - sym_preproc_params, - [62110] = 5, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4358), 1, - anon_sym_LPAREN, - ACTIONS(4488), 1, - aux_sym_preproc_include_token2, - ACTIONS(4490), 1, - sym_preproc_arg, - STATE(1692), 1, - sym_preproc_params, - [62126] = 5, + [46093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3946), 1, sym_identifier, - ACTIONS(4492), 1, + ACTIONS(4512), 1, aux_sym_preproc_if_token2, - STATE(1409), 1, + STATE(1581), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1802), 1, + STATE(1937), 1, sym_enumerator, - [62142] = 5, - ACTIONS(3), 1, + [46109] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(35), 1, - anon_sym___attribute, - ACTIONS(3504), 1, - anon_sym___attribute__, - ACTIONS(4494), 1, - anon_sym_SEMI, - STATE(1991), 1, - sym_attribute_specifier, - [62158] = 4, - ACTIONS(3446), 1, + ACTIONS(4565), 1, + anon_sym_LPAREN, + ACTIONS(4671), 1, + aux_sym_preproc_include_token2, + ACTIONS(4673), 1, + sym_preproc_arg, + STATE(1746), 1, + sym_preproc_params, + [46125] = 5, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_SQUOTE, - STATE(1530), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4342), 2, - aux_sym_char_literal_token1, + ACTIONS(4583), 1, + aux_sym_string_literal_token1, + ACTIONS(4585), 1, sym_escape_sequence, - [62172] = 4, + ACTIONS(4675), 1, + anon_sym_DQUOTE, + STATE(1554), 1, + aux_sym_string_literal_repeat1, + [46141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_RPAREN, - ACTIONS(4500), 1, - anon_sym_COLON, - STATE(1896), 1, - sym_gnu_asm_goto_list, - [62185] = 4, + ACTIONS(3896), 1, + sym_identifier, + ACTIONS(4677), 1, + aux_sym_preproc_if_token2, + STATE(1450), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [46155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(4502), 1, - sym_identifier, - STATE(1050), 1, - sym_enumerator_list, - [62198] = 2, + ACTIONS(39), 1, + anon_sym___attribute, + ACTIONS(3676), 1, + anon_sym___attribute__, + ACTIONS(4679), 1, + anon_sym_SEMI, + STATE(1822), 1, + sym_attribute_specifier, + [46171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 3, + ACTIONS(4681), 1, anon_sym_COMMA, + STATE(1596), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4684), 2, anon_sym_RPAREN, anon_sym_COLON, - [62207] = 2, + [46185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 3, - anon_sym_COMMA, + ACTIONS(3371), 3, anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, - [62216] = 4, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4508), 1, - aux_sym_preproc_include_token2, - ACTIONS(4510), 1, - anon_sym_LPAREN2, - STATE(1796), 1, - sym_preproc_argument_list, - [62229] = 4, + [46194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4512), 1, - anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_generic_expression_repeat1, - [62242] = 4, + ACTIONS(4686), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 1, - anon_sym_COLON, - ACTIONS(4514), 1, - anon_sym_RPAREN, - STATE(2000), 1, - sym_gnu_asm_goto_list, - [62255] = 4, + ACTIONS(4688), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [46216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4690), 1, anon_sym_COMMA, - ACTIONS(4518), 1, - anon_sym_RBRACK_RBRACK, - STATE(1579), 1, - aux_sym_attribute_declaration_repeat1, - [62268] = 4, + ACTIONS(4693), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3573), 1, - anon_sym_RPAREN, - ACTIONS(4520), 1, + ACTIONS(4695), 1, anon_sym_COMMA, - STATE(1571), 1, - aux_sym_preproc_argument_list_repeat1, - [62281] = 4, + ACTIONS(4697), 1, + anon_sym_RBRACK_RBRACK, + STATE(1701), 1, + aux_sym_attribute_declaration_repeat1, + [46242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4523), 1, - anon_sym_RPAREN, - STATE(1668), 1, - aux_sym_argument_list_repeat1, - [62294] = 4, + ACTIONS(4699), 1, + anon_sym_SEMI, + STATE(1606), 1, + aux_sym_declaration_repeat1, + [46255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4525), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, - anon_sym_COLON, - STATE(1563), 1, - sym_gnu_asm_clobber_list, - [62307] = 4, + ACTIONS(1912), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4701), 1, + sym_identifier, + STATE(1811), 1, + sym_variadic_parameter, + [46268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4529), 1, - anon_sym_RBRACK_RBRACK, - STATE(1604), 1, - aux_sym_attribute_declaration_repeat1, - [62320] = 4, + ACTIONS(4703), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_declaration_repeat1, + [46281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4531), 1, + ACTIONS(4705), 1, anon_sym_SEMI, - STATE(1583), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62333] = 4, + [46294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4536), 1, - anon_sym_RPAREN, - STATE(1576), 1, - aux_sym__old_style_parameter_list_repeat1, - [62346] = 4, + ACTIONS(4707), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4541), 1, - anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_preproc_params_repeat1, - [62359] = 4, + ACTIONS(4709), 1, + anon_sym_SEMI, + STATE(1610), 1, + aux_sym_declaration_repeat1, + [46320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4543), 1, - anon_sym_RPAREN, - STATE(1571), 1, - aux_sym_preproc_argument_list_repeat1, - [62372] = 4, + ACTIONS(4711), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4545), 1, - anon_sym_RBRACK_RBRACK, - STATE(1607), 1, - aux_sym_attribute_declaration_repeat1, - [62385] = 4, + ACTIONS(4713), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4547), 1, - anon_sym_RBRACK_RBRACK, - STATE(1607), 1, - aux_sym_attribute_declaration_repeat1, - [62398] = 4, + ACTIONS(4715), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4549), 1, + ACTIONS(4717), 1, anon_sym_SEMI, - STATE(1591), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62411] = 4, + [46372] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4719), 1, + aux_sym_preproc_include_token2, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + STATE(1819), 1, + sym_preproc_argument_list, + [46385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4551), 1, + ACTIONS(4723), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1617), 1, aux_sym_declaration_repeat1, - [62424] = 4, + [46398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(2058), 1, + anon_sym_RBRACE, + ACTIONS(4725), 1, anon_sym_COMMA, - ACTIONS(4553), 1, + STATE(1664), 1, + aux_sym_initializer_list_repeat1, + [46411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4727), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1620), 1, aux_sym_declaration_repeat1, - [62437] = 2, + [46424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [62446] = 4, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4557), 1, - anon_sym_RBRACK_RBRACK, - STATE(1580), 1, - aux_sym_attribute_declaration_repeat1, - [62459] = 4, + ACTIONS(4731), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4561), 1, - anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_preproc_params_repeat1, - [62472] = 4, + ACTIONS(4733), 1, + anon_sym_SEMI, + STATE(1621), 1, + aux_sym_declaration_repeat1, + [46463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4565), 1, - anon_sym_RPAREN, - STATE(1603), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [62485] = 2, + ACTIONS(4735), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 3, + ACTIONS(4288), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [62494] = 4, + ACTIONS(4737), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4569), 1, + ACTIONS(4739), 1, anon_sym_SEMI, - STATE(1595), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62507] = 4, + [46502] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4571), 1, + ACTIONS(4741), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62520] = 4, + [46515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4573), 1, + ACTIONS(4743), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1650), 1, aux_sym_declaration_repeat1, - [62533] = 4, + [46528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4575), 1, + ACTIONS(4745), 1, anon_sym_SEMI, - STATE(1619), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62546] = 4, + [46541] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(4747), 1, + aux_sym_preproc_include_token2, + STATE(1819), 1, + sym_preproc_argument_list, + [46554] = 3, + ACTIONS(3634), 1, + sym_comment, + STATE(1563), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4749), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [46565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(4751), 1, anon_sym_COMMA, - ACTIONS(4577), 1, + ACTIONS(4754), 1, anon_sym_RPAREN, - STATE(1571), 1, - aux_sym_preproc_argument_list_repeat1, - [62559] = 4, + STATE(1627), 1, + aux_sym_generic_expression_repeat1, + [46578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 1, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4756), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4758), 3, anon_sym_COMMA, - ACTIONS(4581), 1, anon_sym_RPAREN, - STATE(1576), 1, - aux_sym__old_style_parameter_list_repeat1, - [62572] = 4, + anon_sym_COLON, + [46600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4760), 3, anon_sym_COMMA, - ACTIONS(4583), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62585] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [46609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 1, + ACTIONS(4762), 1, anon_sym_RPAREN, - ACTIONS(4587), 1, + ACTIONS(4764), 1, anon_sym_COLON, - STATE(1573), 1, + STATE(1702), 1, sym_gnu_asm_input_operand_list, - [62598] = 4, + [46622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 1, - anon_sym_RBRACE, - ACTIONS(4589), 1, + ACTIONS(4766), 1, + anon_sym_RPAREN, + ACTIONS(4768), 1, + anon_sym_COLON, + STATE(1716), 1, + sym_gnu_asm_output_operand_list, + [46635] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3381), 1, anon_sym_COMMA, - STATE(1597), 1, - aux_sym_initializer_list_repeat1, - [62611] = 4, + ACTIONS(3383), 1, + anon_sym_RPAREN, + STATE(1698), 1, + aux_sym_argument_list_repeat1, + [46648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4770), 1, anon_sym_COMMA, - ACTIONS(4594), 1, + ACTIONS(4772), 1, anon_sym_RPAREN, - STATE(1601), 1, - aux_sym_parameter_list_repeat1, - [62624] = 4, - ACTIONS(3446), 1, + STATE(1645), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [46661] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4774), 1, + anon_sym_SEMI, + STATE(1622), 1, + aux_sym_declaration_repeat1, + [46674] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 1, + anon_sym_RPAREN, + ACTIONS(4776), 1, + anon_sym_COMMA, + STATE(1642), 1, + aux_sym_macro_type_specifier_repeat1, + [46687] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + sym_identifier, + STATE(738), 1, + sym_field_declaration_list, + [46700] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4721), 1, anon_sym_LPAREN2, - ACTIONS(4596), 1, + ACTIONS(4780), 1, aux_sym_preproc_include_token2, - STATE(1796), 1, + STATE(1819), 1, sym_preproc_argument_list, - [62637] = 4, + [46713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4782), 1, anon_sym_RPAREN, - ACTIONS(4600), 1, + ACTIONS(4784), 1, anon_sym_COLON, - STATE(1647), 1, - sym_gnu_asm_output_operand_list, - [62650] = 4, + STATE(1696), 1, + sym_gnu_asm_clobber_list, + [46726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4786), 1, anon_sym_COMMA, - ACTIONS(4602), 1, + ACTIONS(4788), 1, anon_sym_RPAREN, - STATE(1669), 1, + STATE(1652), 1, aux_sym_parameter_list_repeat1, - [62663] = 4, - ACTIONS(3446), 1, + [46739] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, - anon_sym_LPAREN2, - ACTIONS(4604), 1, - aux_sym_preproc_include_token2, - STATE(1796), 1, - sym_preproc_argument_list, - [62676] = 4, + ACTIONS(2617), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + sym_identifier, + STATE(747), 1, + sym_field_declaration_list, + [46752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, + ACTIONS(4792), 1, anon_sym_COMMA, - ACTIONS(4609), 1, + ACTIONS(4795), 1, + anon_sym_RPAREN, + STATE(1642), 1, + aux_sym_macro_type_specifier_repeat1, + [46765] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4797), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [46774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, + anon_sym_COMMA, + ACTIONS(4801), 1, + anon_sym_RPAREN, + STATE(1684), 1, + aux_sym_preproc_params_repeat1, + [46787] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4803), 1, + anon_sym_COMMA, + ACTIONS(4806), 1, anon_sym_RPAREN, - STATE(1603), 1, + STATE(1645), 1, aux_sym_gnu_asm_goto_list_repeat1, - [62689] = 4, + [46800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4808), 3, anon_sym_COMMA, - ACTIONS(4611), 1, - anon_sym_RBRACK_RBRACK, - STATE(1607), 1, - aux_sym_attribute_declaration_repeat1, - [62702] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [46809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4810), 3, anon_sym_COMMA, - ACTIONS(4613), 1, - anon_sym_SEMI, - STATE(1611), 1, - aux_sym_declaration_repeat1, - [62715] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [46818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4615), 1, + ACTIONS(4812), 1, anon_sym_SEMI, - STATE(1665), 1, + STATE(1721), 1, aux_sym_declaration_repeat1, - [62728] = 4, + [46831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4620), 1, - anon_sym_RBRACK_RBRACK, - STATE(1607), 1, - aux_sym_attribute_declaration_repeat1, - [62741] = 4, + ACTIONS(4814), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [46844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4622), 1, + ACTIONS(4816), 1, anon_sym_SEMI, - STATE(1616), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62754] = 4, + [46857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4624), 1, + ACTIONS(4818), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62767] = 2, + [46870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 3, + ACTIONS(4820), 1, anon_sym_COMMA, + ACTIONS(4823), 1, anon_sym_RPAREN, - anon_sym_COLON, - [62776] = 4, + STATE(1652), 1, + aux_sym_parameter_list_repeat1, + [46883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4628), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62789] = 2, + ACTIONS(4827), 1, + anon_sym_RPAREN, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [46894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 3, + ACTIONS(4829), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [62798] = 4, + [46903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(3640), 1, anon_sym_COMMA, - ACTIONS(4632), 1, - anon_sym_SEMI, - STATE(1652), 1, - aux_sym_declaration_repeat1, - [62811] = 4, + ACTIONS(4831), 1, + anon_sym_RPAREN, + STATE(1661), 1, + aux_sym_preproc_argument_list_repeat1, + [46916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4634), 1, + ACTIONS(4833), 1, anon_sym_SEMI, - STATE(1620), 1, + STATE(1651), 1, aux_sym_declaration_repeat1, - [62824] = 4, + [46929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(3373), 1, anon_sym_COMMA, - ACTIONS(4636), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62837] = 4, + ACTIONS(3375), 1, + anon_sym_RBRACE, + STATE(1614), 1, + aux_sym_initializer_list_repeat1, + [46942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4638), 1, + ACTIONS(4835), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62850] = 4, + [46955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4837), 1, anon_sym_COMMA, - ACTIONS(4640), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62863] = 3, - ACTIONS(3446), 1, + ACTIONS(4839), 1, + anon_sym_RPAREN, + STATE(1670), 1, + aux_sym__old_style_parameter_list_repeat1, + [46968] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1562), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4642), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [62874] = 4, + ACTIONS(3381), 1, + anon_sym_COMMA, + ACTIONS(4841), 1, + anon_sym_RPAREN, + STATE(1715), 1, + aux_sym_argument_list_repeat1, + [46981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(3723), 1, + anon_sym_RPAREN, + ACTIONS(4843), 1, anon_sym_COMMA, - ACTIONS(4644), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62887] = 4, + STATE(1661), 1, + aux_sym_preproc_argument_list_repeat1, + [46994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4695), 1, anon_sym_COMMA, - ACTIONS(4646), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62900] = 4, + ACTIONS(4846), 1, + anon_sym_RBRACK_RBRACK, + STATE(1701), 1, + aux_sym_attribute_declaration_repeat1, + [47007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(4695), 1, + anon_sym_COMMA, + ACTIONS(4848), 1, + anon_sym_RBRACK_RBRACK, + STATE(1678), 1, + aux_sym_attribute_declaration_repeat1, + [47020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3449), 1, + anon_sym_RBRACE, + ACTIONS(4850), 1, + anon_sym_COMMA, + STATE(1664), 1, + aux_sym_initializer_list_repeat1, + [47033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(3217), 1, + ACTIONS(4856), 1, anon_sym_RPAREN, - STATE(1654), 1, - aux_sym_argument_list_repeat1, - [62913] = 2, + STATE(1665), 1, + aux_sym_preproc_params_repeat1, + [47046] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(4858), 1, + aux_sym_preproc_include_token2, + STATE(1819), 1, + sym_preproc_argument_list, + [47059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4768), 1, + anon_sym_COLON, + ACTIONS(4860), 1, + anon_sym_RPAREN, + STATE(1631), 1, + sym_gnu_asm_output_operand_list, + [47072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4648), 3, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(4862), 1, + anon_sym_RPAREN, + STATE(1627), 1, + aux_sym_generic_expression_repeat1, + [47085] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4864), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [62922] = 4, + [47094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4650), 1, + ACTIONS(4866), 1, anon_sym_COMMA, - ACTIONS(4653), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [62935] = 4, + ACTIONS(4869), 1, + anon_sym_RPAREN, + STATE(1670), 1, + aux_sym__old_style_parameter_list_repeat1, + [47107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4695), 1, anon_sym_COMMA, - ACTIONS(4655), 1, + ACTIONS(4871), 1, + anon_sym_RBRACK_RBRACK, + STATE(1662), 1, + aux_sym_attribute_declaration_repeat1, + [47120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4873), 1, anon_sym_SEMI, - STATE(1629), 1, + STATE(1718), 1, aux_sym_declaration_repeat1, - [62948] = 4, + [47133] = 3, + ACTIONS(3634), 1, + sym_comment, + STATE(1568), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4875), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [47144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4657), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62961] = 4, + [47157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4879), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [47166] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(4881), 1, + sym_identifier, + STATE(1048), 1, + sym_enumerator_list, + [47179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4659), 1, + ACTIONS(4883), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [62974] = 4, + [47192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 1, + anon_sym_COMMA, + ACTIONS(4885), 1, + anon_sym_RBRACK_RBRACK, + STATE(1701), 1, + aux_sym_attribute_declaration_repeat1, + [47205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3640), 1, + anon_sym_COMMA, + ACTIONS(4887), 1, + anon_sym_RPAREN, + STATE(1661), 1, + aux_sym_preproc_argument_list_repeat1, + [47218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4889), 1, + anon_sym_RPAREN, + ACTIONS(4891), 1, + anon_sym_COLON, + STATE(1898), 1, + sym_gnu_asm_goto_list, + [47231] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(4893), 1, + aux_sym_preproc_include_token2, + STATE(1819), 1, + sym_preproc_argument_list, + [47244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4895), 1, + anon_sym_EQ, + ACTIONS(4225), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47255] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(4897), 1, + aux_sym_preproc_include_token2, + STATE(1819), 1, + sym_preproc_argument_list, + [47268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4799), 1, + anon_sym_COMMA, + ACTIONS(4899), 1, + anon_sym_RPAREN, + STATE(1665), 1, + aux_sym_preproc_params_repeat1, + [47281] = 4, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(4901), 1, + aux_sym_preproc_include_token2, + STATE(1819), 1, + sym_preproc_argument_list, + [47294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3128), 1, + anon_sym_LBRACE, + ACTIONS(4903), 1, + sym_identifier, + STATE(915), 1, + sym_enumerator_list, + [47307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4661), 1, + ACTIONS(4905), 1, anon_sym_SEMI, - STATE(1630), 1, + STATE(1710), 1, aux_sym_declaration_repeat1, - [62987] = 4, - ACTIONS(3), 1, + [47320] = 4, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4663), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63000] = 4, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(4907), 1, + aux_sym_preproc_include_token2, + STATE(1819), 1, + sym_preproc_argument_list, + [47333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(4665), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63013] = 4, + ACTIONS(3385), 1, + anon_sym_RPAREN, + STATE(1660), 1, + aux_sym_argument_list_repeat1, + [47346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4667), 1, + ACTIONS(4909), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [63026] = 4, + [47359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4770), 1, anon_sym_COMMA, - ACTIONS(4669), 1, + ACTIONS(4911), 1, anon_sym_RPAREN, - STATE(1586), 1, - aux_sym_preproc_params_repeat1, - [63039] = 4, + STATE(1634), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [47372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4671), 1, + ACTIONS(4913), 1, anon_sym_SEMI, - STATE(1635), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [63052] = 4, + [47385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4695), 1, anon_sym_COMMA, - ACTIONS(4673), 1, - anon_sym_SEMI, - STATE(1638), 1, - aux_sym_declaration_repeat1, - [63065] = 4, + ACTIONS(4915), 1, + anon_sym_RBRACK_RBRACK, + STATE(1601), 1, + aux_sym_attribute_declaration_repeat1, + [47398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4786), 1, anon_sym_COMMA, - ACTIONS(4675), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63078] = 4, + ACTIONS(4917), 1, + anon_sym_RPAREN, + STATE(1640), 1, + aux_sym_parameter_list_repeat1, + [47411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4677), 1, + ACTIONS(4919), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1706), 1, aux_sym_declaration_repeat1, - [63091] = 4, + [47424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4679), 1, - anon_sym_SEMI, - STATE(1639), 1, - aux_sym_declaration_repeat1, - [63104] = 4, + ACTIONS(4891), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_RPAREN, + STATE(2039), 1, + sym_gnu_asm_goto_list, + [47437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4681), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63117] = 4, + ACTIONS(4923), 1, + aux_sym_primitive_type_token1, + ACTIONS(4925), 1, + anon_sym__BitInt, + STATE(1038), 1, + sym_primitive_type, + [47450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(3381), 1, anon_sym_COMMA, - ACTIONS(4683), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63130] = 4, + ACTIONS(4927), 1, + anon_sym_RPAREN, + STATE(1715), 1, + aux_sym_argument_list_repeat1, + [47463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(3640), 1, anon_sym_COMMA, - ACTIONS(4685), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63143] = 3, + ACTIONS(4929), 1, + anon_sym_RPAREN, + STATE(1661), 1, + aux_sym_preproc_argument_list_repeat1, + [47476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4687), 1, - anon_sym_EQ, - ACTIONS(4073), 2, + ACTIONS(4923), 1, + aux_sym_primitive_type_token1, + ACTIONS(4925), 1, + anon_sym__BitInt, + STATE(862), 1, + sym_primitive_type, + [47489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [63154] = 3, - ACTIONS(3446), 1, + ACTIONS(4934), 1, + anon_sym_RBRACK_RBRACK, + STATE(1701), 1, + aux_sym_attribute_declaration_repeat1, + [47502] = 4, + ACTIONS(3), 1, sym_comment, - STATE(1519), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4689), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [63165] = 2, + ACTIONS(4784), 1, + anon_sym_COLON, + ACTIONS(4936), 1, + anon_sym_RPAREN, + STATE(1680), 1, + sym_gnu_asm_clobber_list, + [47515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 3, + ACTIONS(4938), 3, anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - [63174] = 4, + [47524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(3209), 1, - anon_sym_RBRACE, - STATE(1660), 1, - aux_sym_initializer_list_repeat1, - [63187] = 4, + ACTIONS(4940), 1, + anon_sym_SEMI, + STATE(1713), 1, + aux_sym_declaration_repeat1, + [47537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1811), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4693), 1, - sym_identifier, - STATE(1764), 1, - sym_variadic_parameter, - [63200] = 4, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4942), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [47550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_RPAREN, - STATE(1587), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [63213] = 4, + ACTIONS(4944), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [47563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(3128), 1, anon_sym_LBRACE, - ACTIONS(4697), 1, + ACTIONS(4946), 1, sym_identifier, - STATE(731), 1, - sym_field_declaration_list, - [63226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_RPAREN, - STATE(1676), 1, - sym_gnu_asm_input_operand_list, - [63239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4600), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_RPAREN, - STATE(1596), 1, - sym_gnu_asm_output_operand_list, - [63252] = 3, + STATE(1048), 1, + sym_enumerator_list, + [47576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 1, - anon_sym_RPAREN, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, + ACTIONS(2617), 1, + anon_sym_LBRACE, + ACTIONS(4948), 1, sym_identifier, - [63263] = 4, + STATE(742), 1, + sym_field_declaration_list, + [47589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4707), 1, + ACTIONS(4950), 1, anon_sym_SEMI, - STATE(1658), 1, + STATE(1628), 1, aux_sym_declaration_repeat1, - [63276] = 4, + [47602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4709), 1, + ACTIONS(4952), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [63289] = 4, + [47615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4711), 1, + ACTIONS(4954), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1598), 1, aux_sym_declaration_repeat1, - [63302] = 4, + [47628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(4713), 1, - sym_identifier, - STATE(729), 1, - sym_field_declaration_list, - [63315] = 4, + ACTIONS(4288), 1, + anon_sym_COMMA, + ACTIONS(4956), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [47641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4715), 1, - anon_sym_RPAREN, - STATE(1668), 1, - aux_sym_argument_list_repeat1, - [63328] = 4, + ACTIONS(4958), 1, + anon_sym_SEMI, + STATE(1600), 1, + aux_sym_declaration_repeat1, + [47654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3464), 1, + ACTIONS(4960), 1, anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(4962), 1, anon_sym_RPAREN, - STATE(1571), 1, - aux_sym_preproc_argument_list_repeat1, - [63341] = 2, + STATE(1636), 1, + aux_sym_macro_type_specifier_repeat1, + [47667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 3, + ACTIONS(3451), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [63350] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4719), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [63359] = 4, + ACTIONS(4964), 1, + anon_sym_COMMA, + STATE(1715), 1, + aux_sym_argument_list_repeat1, + [47680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4721), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63372] = 3, - ACTIONS(3446), 1, + ACTIONS(4764), 1, + anon_sym_COLON, + ACTIONS(4967), 1, + anon_sym_RPAREN, + STATE(1639), 1, + sym_gnu_asm_input_operand_list, + [47693] = 3, + ACTIONS(3634), 1, sym_comment, - STATE(1522), 1, + STATE(1583), 1, aux_sym_char_literal_repeat1, - ACTIONS(4723), 2, + ACTIONS(4969), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [63383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2002), 1, - anon_sym_RBRACE, - ACTIONS(4725), 1, - anon_sym_COMMA, - STATE(1597), 1, - aux_sym_initializer_list_repeat1, - [63396] = 4, + [47704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4727), 1, + ACTIONS(4971), 1, anon_sym_SEMI, - STATE(1677), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [63409] = 4, + [47717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4729), 1, + ACTIONS(4973), 1, anon_sym_SEMI, - STATE(1673), 1, + STATE(1692), 1, aux_sym_declaration_repeat1, - [63422] = 4, + [47730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4731), 1, + ACTIONS(4975), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1677), 1, aux_sym_declaration_repeat1, - [63435] = 4, + [47743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4288), 1, anon_sym_COMMA, - ACTIONS(4733), 1, + ACTIONS(4977), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1600), 1, aux_sym_declaration_repeat1, - [63448] = 4, + [47756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4735), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63461] = 4, + ACTIONS(4979), 1, + anon_sym_LPAREN2, + STATE(1813), 1, + sym_parenthesized_expression, + [47766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(4737), 1, - sym_identifier, - STATE(1050), 1, - sym_enumerator_list, - [63474] = 4, + STATE(187), 1, + sym_compound_statement, + [47776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 1, + ACTIONS(4981), 2, anon_sym_COMMA, - ACTIONS(3219), 1, - anon_sym_RPAREN, - STATE(1572), 1, - aux_sym_argument_list_repeat1, - [63487] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 1, anon_sym_RPAREN, - ACTIONS(4739), 1, - anon_sym_COMMA, - STATE(1668), 1, - aux_sym_argument_list_repeat1, - [63500] = 4, + [47784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4742), 1, - anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_RPAREN, - STATE(1669), 1, - aux_sym_parameter_list_repeat1, - [63513] = 4, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + STATE(1907), 1, + sym_argument_list, + [47794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - ACTIONS(4747), 1, - sym_identifier, - STATE(726), 1, - sym_field_declaration_list, - [63526] = 2, + STATE(179), 1, + sym_compound_statement, + [47804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [63535] = 4, - ACTIONS(3), 1, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(161), 1, + sym_compound_statement, + [47814] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4751), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_RPAREN, - STATE(1672), 1, - aux_sym_generic_expression_repeat1, - [63548] = 4, - ACTIONS(3), 1, + ACTIONS(4984), 1, + aux_sym_preproc_include_token2, + ACTIONS(4986), 1, + aux_sym_preproc_errwarn_token3, + [47824] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4756), 1, - anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63561] = 4, + ACTIONS(4988), 1, + aux_sym_preproc_include_token2, + ACTIONS(4990), 1, + sym_preproc_arg, + [47834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACE, - ACTIONS(4758), 1, + ACTIONS(4992), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(848), 1, - sym_enumerator_list, - [63574] = 4, - ACTIONS(3446), 1, + [47842] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4510), 1, - anon_sym_LPAREN2, - ACTIONS(4760), 1, + ACTIONS(4994), 1, aux_sym_preproc_include_token2, - STATE(1796), 1, - sym_preproc_argument_list, - [63587] = 4, + ACTIONS(4996), 1, + sym_preproc_arg, + [47852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 1, - anon_sym_COLON, - ACTIONS(4762), 1, - anon_sym_RPAREN, - STATE(1569), 1, - sym_gnu_asm_clobber_list, - [63600] = 4, + ACTIONS(4998), 1, + sym_identifier, + STATE(1671), 1, + sym_attribute, + [47862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(5000), 2, anon_sym_COMMA, - ACTIONS(4764), 1, anon_sym_SEMI, - STATE(1623), 1, - aux_sym_declaration_repeat1, - [63613] = 4, + [47870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_COMMA, - ACTIONS(4766), 1, - anon_sym_SEMI, - STATE(1626), 1, - aux_sym_declaration_repeat1, - [63626] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4768), 1, - aux_sym_preproc_include_token2, - ACTIONS(4770), 1, - sym_preproc_arg, - [63636] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4772), 1, - aux_sym_preproc_include_token2, - ACTIONS(4774), 1, - sym_preproc_arg, - [63646] = 3, + ACTIONS(554), 1, + anon_sym_LBRACE, + STATE(257), 1, + sym_compound_statement, + [47880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(340), 1, + STATE(1989), 1, sym_parenthesized_expression, - [63656] = 3, - ACTIONS(3446), 1, + [47890] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4778), 1, + ACTIONS(5002), 1, aux_sym_preproc_include_token2, - ACTIONS(4780), 1, + ACTIONS(5004), 1, sym_preproc_arg, - [63666] = 2, + [47900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3265), 2, + ACTIONS(4823), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [63674] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4782), 1, - aux_sym_preproc_include_token2, - ACTIONS(4784), 1, - sym_preproc_arg, - [63684] = 3, - ACTIONS(3446), 1, + anon_sym_RPAREN, + [47908] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(5006), 1, aux_sym_preproc_include_token2, - ACTIONS(4788), 1, - sym_preproc_arg, - [63694] = 2, + ACTIONS(5008), 1, + aux_sym_preproc_errwarn_token3, + [47918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 2, + ACTIONS(3483), 2, anon_sym_COMMA, anon_sym_RBRACE, - [63702] = 3, - ACTIONS(3446), 1, + [47926] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(5010), 1, aux_sym_preproc_include_token2, - ACTIONS(4792), 1, - sym_preproc_arg, - [63712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4794), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN2, - STATE(1875), 1, - sym_argument_list, - [63730] = 3, + ACTIONS(5012), 1, + aux_sym_preproc_errwarn_token3, + [47936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(430), 1, + ACTIONS(149), 1, anon_sym_LBRACE, - STATE(188), 1, + STATE(85), 1, sym_compound_statement, - [63740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(348), 1, - sym_parenthesized_expression, - [63750] = 3, - ACTIONS(3446), 1, + [47946] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(5014), 1, aux_sym_preproc_include_token2, - ACTIONS(4798), 1, + ACTIONS(5016), 1, sym_preproc_arg, - [63760] = 3, + [47956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_LPAREN2, - STATE(1762), 1, - sym_parenthesized_expression, - [63770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4620), 2, + ACTIONS(3449), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [63778] = 2, + anon_sym_RBRACE, + [47964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [63786] = 3, - ACTIONS(3446), 1, + ACTIONS(149), 1, + anon_sym_LBRACE, + STATE(93), 1, + sym_compound_statement, + [47974] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4805), 1, + ACTIONS(5018), 1, aux_sym_preproc_include_token2, - ACTIONS(4807), 1, + ACTIONS(5020), 1, sym_preproc_arg, - [63796] = 3, - ACTIONS(3), 1, + [47984] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_LPAREN2, - STATE(1736), 1, - sym_parenthesized_expression, - [63806] = 3, + ACTIONS(5022), 1, + aux_sym_preproc_include_token2, + ACTIONS(5024), 1, + sym_preproc_arg, + [47994] = 3, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5026), 1, + aux_sym_preproc_include_token2, + ACTIONS(5028), 1, + sym_preproc_arg, + [48004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(378), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(153), 1, + STATE(233), 1, sym_compound_statement, - [63816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4809), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [63824] = 3, + [48014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - STATE(84), 1, + STATE(217), 1, sym_compound_statement, - [63834] = 2, + [48024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4811), 2, + ACTIONS(3461), 2, anon_sym_COMMA, - anon_sym_SEMI, - [63842] = 3, + anon_sym_RBRACE, + [48032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, - sym_identifier, - STATE(1694), 1, - sym_attribute, - [63852] = 3, + ACTIONS(3952), 1, + anon_sym_RBRACE, + ACTIONS(5030), 1, + anon_sym_COMMA, + [48042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, + ACTIONS(554), 1, anon_sym_LBRACE, - STATE(100), 1, + STATE(222), 1, sym_compound_statement, - [63862] = 3, - ACTIONS(3446), 1, + [48052] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4815), 1, + ACTIONS(5032), 1, aux_sym_preproc_include_token2, - ACTIONS(4817), 1, + ACTIONS(5034), 1, sym_preproc_arg, - [63872] = 3, - ACTIONS(3446), 1, + [48062] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4819), 1, + ACTIONS(5036), 1, aux_sym_preproc_include_token2, - ACTIONS(4821), 1, - sym_preproc_arg, - [63882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - STATE(202), 1, - sym_compound_statement, - [63892] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [63900] = 3, - ACTIONS(3), 1, + ACTIONS(5038), 1, + aux_sym_preproc_errwarn_token3, + [48072] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(378), 1, - anon_sym_LBRACE, - STATE(179), 1, - sym_compound_statement, - [63910] = 3, + ACTIONS(5040), 1, + aux_sym_preproc_include_token2, + ACTIONS(5042), 1, + sym_preproc_arg, + [48082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(430), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_compound_statement, - [63920] = 3, - ACTIONS(3446), 1, + ACTIONS(5044), 1, + anon_sym_LPAREN2, + STATE(366), 1, + sym_parenthesized_expression, + [48092] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(5046), 1, aux_sym_preproc_include_token2, - ACTIONS(4827), 1, + ACTIONS(5048), 1, sym_preproc_arg, - [63930] = 3, + [48102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(349), 1, + STATE(368), 1, sym_parenthesized_expression, - [63940] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3291), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [63948] = 3, + [48112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(1781), 1, - sym_argument_list, - [63958] = 3, + STATE(379), 1, + sym_parenthesized_expression, + [48122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(1906), 1, + STATE(380), 1, sym_parenthesized_expression, - [63968] = 3, - ACTIONS(3446), 1, + [48132] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4829), 1, + ACTIONS(5050), 1, aux_sym_preproc_include_token2, - ACTIONS(4831), 1, + ACTIONS(5052), 1, sym_preproc_arg, - [63978] = 3, - ACTIONS(3), 1, + [48142] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4833), 1, - sym_identifier, - ACTIONS(4835), 1, - anon_sym_LPAREN2, - [63988] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4837), 1, + ACTIONS(5054), 1, aux_sym_preproc_include_token2, - ACTIONS(4839), 1, + ACTIONS(5056), 1, sym_preproc_arg, - [63998] = 3, + [48152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - anon_sym_RBRACE, - ACTIONS(4841), 1, + ACTIONS(3453), 2, anon_sym_COMMA, - [64008] = 3, + anon_sym_SEMI, + [48160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, + ACTIONS(4998), 1, sym_identifier, - STATE(1574), 1, + STATE(1663), 1, sym_attribute, - [64018] = 3, + [48170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(343), 1, + STATE(374), 1, sym_parenthesized_expression, - [64028] = 3, + [48180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1708), 1, + STATE(1723), 1, sym_parenthesized_expression, - [64038] = 3, + [48190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, - sym_identifier, - STATE(1585), 1, - sym_attribute, - [64048] = 3, - ACTIONS(3446), 1, + ACTIONS(5030), 1, + anon_sym_COMMA, + ACTIONS(5058), 1, + anon_sym_RBRACE, + [48200] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4843), 1, - aux_sym_preproc_include_token2, - ACTIONS(4845), 1, - sym_preproc_arg, - [64058] = 3, + ACTIONS(5044), 1, + anon_sym_LPAREN2, + STATE(375), 1, + sym_parenthesized_expression, + [48210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1555), 1, sym_compound_statement, - [64068] = 3, + [48220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(4979), 1, + anon_sym_LPAREN2, + STATE(1799), 1, + sym_parenthesized_expression, + [48230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5060), 1, + sym_identifier, + ACTIONS(5062), 1, + anon_sym_RPAREN, + [48240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5064), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [48256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(149), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(89), 1, sym_compound_statement, - [64078] = 3, - ACTIONS(3446), 1, + [48266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2627), 1, + anon_sym_LPAREN2, + STATE(2016), 1, + sym_argument_list, + [48276] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4847), 1, + ACTIONS(5066), 1, aux_sym_preproc_include_token2, - ACTIONS(4849), 1, + ACTIONS(5068), 1, sym_preproc_arg, - [64088] = 3, - ACTIONS(3446), 1, + [48286] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4851), 1, + ACTIONS(5070), 1, aux_sym_preproc_include_token2, - ACTIONS(4853), 1, + ACTIONS(5072), 1, sym_preproc_arg, - [64098] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(153), 1, - sym_compound_statement, - [64108] = 3, + [48296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1857), 1, + STATE(2059), 1, sym_parenthesized_expression, - [64118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_compound_statement, - [64128] = 3, + [48306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1737), 1, + STATE(1727), 1, sym_parenthesized_expression, - [64138] = 2, + [48316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 2, + ACTIONS(5074), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [64146] = 3, + anon_sym_RBRACK_RBRACK, + [48324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(316), 1, + STATE(371), 1, sym_parenthesized_expression, - [64156] = 3, + [48334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(4412), 2, anon_sym_COMMA, - ACTIONS(4857), 1, - anon_sym_RBRACE, - [64166] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [48342] = 3, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4859), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [64174] = 3, + ACTIONS(5076), 1, + aux_sym_preproc_include_token2, + ACTIONS(5078), 1, + sym_preproc_arg, + [48352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(378), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_compound_statement, - [64184] = 3, + ACTIONS(4998), 1, + sym_identifier, + STATE(1773), 1, + sym_attribute, + [48362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(251), 1, - sym_compound_statement, - [64194] = 3, + ACTIONS(5080), 1, + sym_identifier, + ACTIONS(5082), 1, + anon_sym_LPAREN2, + [48372] = 3, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5084), 1, + aux_sym_preproc_include_token2, + ACTIONS(5086), 1, + sym_preproc_arg, + [48382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, + ACTIONS(4998), 1, sym_identifier, - STATE(1570), 1, + STATE(1693), 1, sym_attribute, - [64204] = 3, + [48392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(357), 1, + STATE(385), 1, sym_parenthesized_expression, - [64214] = 3, + [48402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1747), 1, + STATE(1774), 1, sym_parenthesized_expression, - [64224] = 3, + [48412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(5044), 1, anon_sym_LPAREN2, - STATE(358), 1, + STATE(386), 1, sym_parenthesized_expression, - [64234] = 3, + [48422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(5088), 1, + sym_identifier, + ACTIONS(5090), 1, + anon_sym_LPAREN2, + [48432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(1550), 1, + STATE(1560), 1, sym_compound_statement, - [64244] = 3, + [48442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, - sym_identifier, - ACTIONS(4863), 1, + ACTIONS(4979), 1, + anon_sym_LPAREN2, + STATE(1748), 1, + sym_parenthesized_expression, + [48452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4979), 1, anon_sym_LPAREN2, - [64254] = 2, + STATE(2051), 1, + sym_parenthesized_expression, + [48462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4252), 2, + ACTIONS(4436), 2, anon_sym_COMMA, anon_sym_SEMI, - [64262] = 3, + [48470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_LPAREN2, - STATE(1883), 1, - sym_parenthesized_expression, - [64272] = 3, + ACTIONS(5092), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [48478] = 3, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5094), 1, + aux_sym_preproc_include_token2, + ACTIONS(5096), 1, + sym_preproc_arg, + [48488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1760), 1, + STATE(1734), 1, sym_parenthesized_expression, - [64282] = 3, + [48498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(133), 1, + ACTIONS(416), 1, anon_sym_LBRACE, - STATE(86), 1, + STATE(161), 1, sym_compound_statement, - [64292] = 2, + [48508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4745), 2, + ACTIONS(5098), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4800), 1, - anon_sym_LPAREN2, - STATE(1690), 1, - sym_parenthesized_expression, - [64310] = 3, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4865), 1, - aux_sym_preproc_include_token2, - ACTIONS(4867), 1, - sym_preproc_arg, - [64320] = 3, + [48516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(1573), 1, sym_compound_statement, - [64330] = 3, + [48526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4979), 1, + anon_sym_LPAREN2, + STATE(2053), 1, + sym_parenthesized_expression, + [48536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1955), 1, + STATE(1744), 1, sym_parenthesized_expression, - [64340] = 3, + [48546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4979), 1, anon_sym_LPAREN2, - STATE(1703), 1, + STATE(1752), 1, sym_parenthesized_expression, - [64350] = 2, + [48556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_compound_statement, + [48566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 2, + ACTIONS(3451), 2, anon_sym_COMMA, - anon_sym_SEMI, - [64358] = 3, + anon_sym_RPAREN, + [48574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(362), 1, - sym_parenthesized_expression, - [64368] = 3, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(1558), 1, + sym_compound_statement, + [48584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 1, - anon_sym_LPAREN2, - STATE(1709), 1, - sym_parenthesized_expression, - [64378] = 3, + ACTIONS(4795), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(366), 1, - sym_parenthesized_expression, - [64388] = 2, + ACTIONS(47), 1, + anon_sym_LBRACE, + STATE(155), 1, + sym_compound_statement, + [48602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3253), 2, + ACTIONS(4856), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64396] = 2, + [48610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 2, + ACTIONS(4869), 2, anon_sym_COMMA, anon_sym_RPAREN, - [64404] = 3, + [48618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACE, - STATE(241), 1, - sym_compound_statement, - [64414] = 3, + ACTIONS(5044), 1, + anon_sym_LPAREN2, + STATE(373), 1, + sym_parenthesized_expression, + [48628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(1542), 1, + STATE(172), 1, sym_compound_statement, - [64424] = 3, + [48638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(47), 1, anon_sym_LBRACE, - STATE(172), 1, + STATE(1571), 1, sym_compound_statement, - [64434] = 3, + [48648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - sym_identifier, - ACTIONS(4871), 1, - anon_sym_RPAREN, - [64444] = 2, + ACTIONS(5100), 1, + aux_sym_preproc_if_token2, + [48655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 2, - anon_sym_COMMA, + ACTIONS(5102), 1, anon_sym_RPAREN, - [64452] = 2, + [48662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [64460] = 3, + ACTIONS(5104), 1, + aux_sym_preproc_if_token2, + [48669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LPAREN2, - STATE(344), 1, - sym_parenthesized_expression, - [64470] = 2, - ACTIONS(3), 1, + ACTIONS(5106), 1, + anon_sym_COMMA, + [48676] = 2, + ACTIONS(3351), 1, + aux_sym_preproc_include_token2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4873), 1, - aux_sym_preproc_if_token2, - [64477] = 2, + [48683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 1, - anon_sym_RPAREN, - [64484] = 2, - ACTIONS(3446), 1, + ACTIONS(5108), 1, + sym_identifier, + [48690] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(5110), 1, aux_sym_preproc_include_token2, - [64491] = 2, + [48697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(5112), 1, anon_sym_SEMI, - [64498] = 2, + [48704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 1, - anon_sym_RPAREN, - [64505] = 2, + ACTIONS(5114), 1, + anon_sym_COLON, + [48711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 1, + ACTIONS(5116), 1, + anon_sym_LPAREN2, + [48718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5118), 1, anon_sym_RPAREN, - [64512] = 2, - ACTIONS(3446), 1, + [48725] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4879), 1, + ACTIONS(5120), 1, aux_sym_preproc_include_token2, - [64519] = 2, - ACTIONS(3446), 1, + [48732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5122), 1, + aux_sym_preproc_if_token2, + [48739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5124), 1, + aux_sym_preproc_if_token2, + [48746] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 1, + ACTIONS(5126), 1, + anon_sym_SEMI, + [48753] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5128), 1, aux_sym_preproc_include_token2, - [64526] = 2, + [48760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_RPAREN, - [64533] = 2, + ACTIONS(5130), 1, + aux_sym_preproc_if_token2, + [48767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(5132), 1, anon_sym_RPAREN, - [64540] = 2, + [48774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, + ACTIONS(3447), 1, anon_sym_RPAREN, - [64547] = 2, - ACTIONS(3446), 1, + [48781] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - aux_sym_preproc_include_token2, - [64554] = 2, + ACTIONS(5134), 1, + aux_sym_preproc_if_token2, + [48788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5136), 1, anon_sym_RPAREN, - [64561] = 2, - ACTIONS(3446), 1, + [48795] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(5138), 1, + anon_sym_RBRACK, + [48802] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5140), 1, aux_sym_preproc_include_token2, - [64568] = 2, + [48809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, - anon_sym_RPAREN, - [64575] = 2, + ACTIONS(5142), 1, + anon_sym_SEMI, + [48816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(3393), 1, anon_sym_RPAREN, - [64582] = 2, - ACTIONS(3191), 1, - aux_sym_preproc_include_token2, - ACTIONS(3446), 1, + [48823] = 2, + ACTIONS(3), 1, sym_comment, - [64589] = 2, - ACTIONS(3446), 1, + ACTIONS(5144), 1, + anon_sym_COLON, + [48830] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(5146), 1, + sym_identifier, + [48837] = 2, + ACTIONS(3347), 1, aux_sym_preproc_include_token2, - [64596] = 2, - ACTIONS(3446), 1, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4897), 1, - aux_sym_preproc_include_token2, - [64603] = 2, + [48844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4899), 1, - anon_sym_LPAREN2, - [64610] = 2, + ACTIONS(5148), 1, + anon_sym_SEMI, + [48851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 1, - aux_sym_preproc_if_token2, - [64617] = 2, + ACTIONS(5150), 1, + anon_sym_SEMI, + [48858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, - aux_sym_preproc_if_token2, - [64624] = 2, - ACTIONS(3446), 1, + ACTIONS(5152), 1, + anon_sym_SEMI, + [48865] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4905), 1, + ACTIONS(5154), 1, aux_sym_preproc_include_token2, - [64631] = 2, + [48872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4907), 1, + ACTIONS(5156), 1, sym_identifier, - [64638] = 2, + [48879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 1, + ACTIONS(5158), 1, aux_sym_preproc_if_token2, - [64645] = 2, - ACTIONS(3446), 1, + [48886] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4911), 1, + ACTIONS(5160), 1, aux_sym_preproc_include_token2, - [64652] = 2, + [48893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 1, - anon_sym_RPAREN, - [64659] = 2, + ACTIONS(5162), 1, + aux_sym_preproc_if_token2, + [48900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, - sym_identifier, - [64666] = 2, - ACTIONS(3167), 1, - aux_sym_preproc_include_token2, - ACTIONS(3446), 1, + ACTIONS(5164), 1, + anon_sym_COLON, + [48907] = 2, + ACTIONS(3), 1, sym_comment, - [64673] = 2, - ACTIONS(3181), 1, - aux_sym_preproc_include_token2, - ACTIONS(3446), 1, + ACTIONS(5166), 1, + aux_sym_preproc_if_token2, + [48914] = 2, + ACTIONS(3634), 1, sym_comment, - [64680] = 2, + ACTIONS(4893), 1, + aux_sym_preproc_include_token2, + [48921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, - sym_identifier, - [64687] = 2, - ACTIONS(3446), 1, + ACTIONS(5168), 1, + anon_sym_COLON, + [48928] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4919), 1, + ACTIONS(5170), 1, aux_sym_preproc_include_token2, - [64694] = 2, + [48935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4921), 1, - aux_sym_preproc_if_token2, - [64701] = 2, + ACTIONS(5172), 1, + anon_sym_LPAREN2, + [48942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3289), 1, - anon_sym_SEMI, - [64708] = 2, + ACTIONS(5174), 1, + anon_sym_LPAREN2, + [48949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4923), 1, + ACTIONS(5176), 1, anon_sym_SEMI, - [64715] = 2, + [48956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, - anon_sym_COMMA, - [64722] = 2, + ACTIONS(5178), 1, + anon_sym_SEMI, + [48963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, - aux_sym_preproc_if_token2, - [64729] = 2, - ACTIONS(3), 1, + ACTIONS(5180), 1, + sym_identifier, + [48970] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_SEMI, - [64736] = 2, - ACTIONS(3446), 1, + ACTIONS(5182), 1, + aux_sym_preproc_include_token2, + [48977] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4927), 1, + ACTIONS(5184), 1, aux_sym_preproc_include_token2, - [64743] = 2, - ACTIONS(3446), 1, + [48984] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4929), 1, + ACTIONS(5186), 1, aux_sym_preproc_include_token2, - [64750] = 2, - ACTIONS(3), 1, + [48991] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3305), 1, - anon_sym_SEMI, - [64757] = 2, - ACTIONS(3446), 1, + ACTIONS(5188), 1, + aux_sym_preproc_include_token2, + [48998] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4931), 1, + ACTIONS(5190), 1, aux_sym_preproc_include_token2, - [64764] = 2, - ACTIONS(3), 1, + [49005] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3317), 1, - anon_sym_COLON, - [64771] = 2, + ACTIONS(4897), 1, + aux_sym_preproc_include_token2, + [49012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, + ACTIONS(5192), 1, sym_identifier, - [64778] = 2, + [49019] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 1, + anon_sym_RPAREN, + [49026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, + ACTIONS(5194), 1, sym_identifier, - [64785] = 2, + [49033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 1, - anon_sym_COMMA, - [64792] = 2, + ACTIONS(5196), 1, + aux_sym_preproc_if_token2, + [49040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 1, - anon_sym_RPAREN, - [64799] = 2, + ACTIONS(5198), 1, + aux_sym_preproc_if_token2, + [49047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3301), 1, - anon_sym_SEMI, - [64806] = 2, + ACTIONS(5200), 1, + aux_sym_preproc_if_token2, + [49054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4941), 1, + ACTIONS(5202), 1, sym_identifier, - [64813] = 2, - ACTIONS(3446), 1, + [49061] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(5204), 1, aux_sym_preproc_include_token2, - [64820] = 2, + [49068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 1, - anon_sym_SEMI, - [64827] = 2, + ACTIONS(5206), 1, + anon_sym_RPAREN, + [49075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 1, - anon_sym_SEMI, - [64834] = 2, + ACTIONS(5208), 1, + anon_sym_LPAREN2, + [49082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, + ACTIONS(5210), 1, sym_identifier, - [64841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4947), 1, - ts_builtin_sym_end, - [64848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4949), 1, - aux_sym_preproc_if_token2, - [64855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4951), 1, - aux_sym_preproc_if_token2, - [64862] = 2, + [49089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, - anon_sym_RBRACE, - [64869] = 2, + ACTIONS(5212), 1, + anon_sym_SEMI, + [49096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, - anon_sym_SEMI, - [64876] = 2, + ACTIONS(5214), 1, + anon_sym_COLON, + [49103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4955), 1, + ACTIONS(5216), 1, anon_sym_RPAREN, - [64883] = 2, - ACTIONS(3446), 1, + [49110] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4957), 1, + ACTIONS(4901), 1, aux_sym_preproc_include_token2, - [64890] = 2, + [49117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4959), 1, - sym_primitive_type, - [64897] = 2, + ACTIONS(5218), 1, + anon_sym_RBRACE, + [49124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4961), 1, - aux_sym_preproc_if_token2, - [64904] = 2, + ACTIONS(5220), 1, + anon_sym_RPAREN, + [49131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4963), 1, - anon_sym_RBRACE, - [64911] = 2, + ACTIONS(5222), 1, + anon_sym_LPAREN2, + [49138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, + ACTIONS(5224), 1, aux_sym_preproc_if_token2, - [64918] = 2, + [49145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_COLON, - [64925] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4967), 1, - sym_identifier, - [64932] = 2, + ACTIONS(5226), 1, + anon_sym_SEMI, + [49152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - anon_sym_RBRACE, - [64939] = 2, - ACTIONS(3), 1, + ACTIONS(3455), 1, + anon_sym_COLON, + [49159] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4969), 1, - anon_sym_RPAREN, - [64946] = 2, - ACTIONS(3446), 1, + ACTIONS(5228), 1, + aux_sym_preproc_include_token2, + [49166] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4971), 1, + ACTIONS(4907), 1, aux_sym_preproc_include_token2, - [64953] = 2, + [49173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 1, - aux_sym_preproc_if_token2, - [64960] = 2, + ACTIONS(5230), 1, + anon_sym_STAR, + [49180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(5232), 1, anon_sym_RPAREN, - [64967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4977), 1, - aux_sym_preproc_if_token2, - [64974] = 2, + [49187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4979), 1, + ACTIONS(5234), 1, sym_identifier, - [64981] = 2, + [49194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 1, - aux_sym_preproc_if_token2, - [64988] = 2, + ACTIONS(5236), 1, + anon_sym_SEMI, + [49201] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5238), 1, + aux_sym_preproc_include_token2, + [49208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, - sym_identifier, - [64995] = 2, + ACTIONS(5240), 1, + anon_sym_RPAREN, + [49215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4985), 1, - aux_sym_preproc_if_token2, - [65002] = 2, + ACTIONS(5242), 1, + anon_sym_RBRACE, + [49222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(5244), 1, anon_sym_RPAREN, - [65009] = 2, + [49229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4987), 1, - aux_sym_preproc_if_token2, - [65016] = 2, + ACTIONS(5246), 1, + anon_sym_RPAREN, + [49236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4989), 1, + ACTIONS(5248), 1, sym_identifier, - [65023] = 2, + [49243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 1, - anon_sym_LPAREN2, - [65030] = 2, - ACTIONS(3446), 1, + ACTIONS(5058), 1, + anon_sym_RBRACE, + [49250] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4993), 1, - aux_sym_preproc_include_token2, - [65037] = 2, + ACTIONS(5250), 1, + anon_sym_SEMI, + [49257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4995), 1, + ACTIONS(5252), 1, anon_sym_LPAREN2, - [65044] = 2, + [49264] = 2, + ACTIONS(3343), 1, + aux_sym_preproc_include_token2, + ACTIONS(3634), 1, + sym_comment, + [49271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 1, + ACTIONS(3457), 1, anon_sym_SEMI, - [65051] = 2, + [49278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 1, - aux_sym_preproc_if_token2, - [65058] = 2, + ACTIONS(5254), 1, + anon_sym_SEMI, + [49285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 1, + ACTIONS(3467), 1, anon_sym_SEMI, - [65065] = 2, + [49292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4999), 1, - anon_sym_SEMI, - [65072] = 2, + ACTIONS(5256), 1, + anon_sym_RPAREN, + [49299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 1, + ACTIONS(5258), 1, aux_sym_preproc_if_token2, - [65079] = 2, + [49306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5003), 1, - sym_identifier, - [65086] = 2, + ACTIONS(5260), 1, + anon_sym_COLON, + [49313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5005), 1, - anon_sym_SEMI, - [65093] = 2, + ACTIONS(5262), 1, + aux_sym_preproc_if_token2, + [49320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5007), 1, - anon_sym_RPAREN, - [65100] = 2, + ACTIONS(3465), 1, + anon_sym_SEMI, + [49327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 1, - anon_sym_SEMI, - [65107] = 2, + ACTIONS(5264), 1, + sym_identifier, + [49334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5011), 1, + ACTIONS(5266), 1, anon_sym_SEMI, - [65114] = 2, + [49341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5013), 1, + ACTIONS(5268), 1, sym_identifier, - [65121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5015), 1, - aux_sym_preproc_if_token2, - [65128] = 2, + [49348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5017), 1, - anon_sym_RPAREN, - [65135] = 2, + ACTIONS(3952), 1, + anon_sym_RBRACE, + [49355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5019), 1, + ACTIONS(3529), 1, anon_sym_RPAREN, - [65142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5021), 1, - aux_sym_preproc_if_token2, - [65149] = 2, + [49362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5023), 1, + ACTIONS(5270), 1, sym_identifier, - [65156] = 2, + [49369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5025), 1, - anon_sym_SEMI, - [65163] = 2, + ACTIONS(5272), 1, + anon_sym_RPAREN, + [49376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5027), 1, - anon_sym_RBRACE, - [65170] = 2, + ACTIONS(5274), 1, + anon_sym_RPAREN, + [49383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5029), 1, - aux_sym_preproc_if_token2, - [65177] = 2, + ACTIONS(5276), 1, + anon_sym_RPAREN, + [49390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5031), 1, + ACTIONS(3459), 1, anon_sym_SEMI, - [65184] = 2, + [49397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5033), 1, + ACTIONS(5278), 1, anon_sym_SEMI, - [65191] = 2, + [49404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5035), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - [65198] = 2, - ACTIONS(3), 1, + [49411] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3299), 1, - anon_sym_COLON, - [65205] = 2, + ACTIONS(5282), 1, + aux_sym_preproc_include_token2, + [49418] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4747), 1, + aux_sym_preproc_include_token2, + [49425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, - aux_sym_preproc_if_token2, - [65212] = 2, + ACTIONS(3375), 1, + anon_sym_RBRACE, + [49432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5039), 1, - anon_sym_SEMI, - [65219] = 2, + ACTIONS(5284), 1, + sym_identifier, + [49439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5041), 1, - anon_sym_RBRACE, - [65226] = 2, + ACTIONS(5286), 1, + anon_sym_RPAREN, + [49446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5043), 1, - anon_sym_STAR, - [65233] = 2, + ACTIONS(3471), 1, + anon_sym_COLON, + [49453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5045), 1, + ACTIONS(5288), 1, sym_identifier, - [65240] = 2, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(5047), 1, - aux_sym_preproc_include_token2, - [65247] = 2, + [49460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5049), 1, + ACTIONS(3469), 1, anon_sym_SEMI, - [65254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5051), 1, - sym_identifier, - [65261] = 2, + [49467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5053), 1, + ACTIONS(5290), 1, aux_sym_preproc_if_token2, - [65268] = 2, + [49474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - anon_sym_COLON, - [65275] = 2, + ACTIONS(5292), 1, + anon_sym_SEMI, + [49481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 1, + ACTIONS(5294), 1, anon_sym_LPAREN2, - [65282] = 2, + [49488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - anon_sym_SEMI, - [65289] = 2, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4508), 1, - aux_sym_preproc_include_token2, - [65296] = 2, + ACTIONS(5296), 1, + aux_sym_preproc_if_token2, + [49495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_RPAREN, - [65303] = 2, + ACTIONS(5298), 1, + aux_sym_preproc_if_token2, + [49502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5061), 1, - sym_primitive_type, - [65310] = 2, + ACTIONS(4356), 1, + anon_sym_COMMA, + [49509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - anon_sym_RPAREN, - [65317] = 2, + ACTIONS(5300), 1, + sym_identifier, + [49516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, - anon_sym_while, - [65324] = 2, + ACTIONS(5302), 1, + anon_sym_RBRACE, + [49523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, + ACTIONS(5304), 1, anon_sym_RBRACE, - [65331] = 2, + [49530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 1, - sym_identifier, - [65338] = 2, + ACTIONS(5306), 1, + aux_sym_preproc_if_token2, + [49537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5308), 1, aux_sym_preproc_if_token2, - [65345] = 2, + [49544] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5310), 1, + aux_sym_preproc_include_token2, + [49551] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5312), 1, + anon_sym_STAR, + [49558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5314), 1, aux_sym_preproc_if_token2, - [65352] = 2, + [49565] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5316), 1, + aux_sym_preproc_include_token2, + [49572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 1, - sym_identifier, - [65359] = 2, + ACTIONS(3443), 1, + anon_sym_SEMI, + [49579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(5318), 1, aux_sym_preproc_if_token2, - [65366] = 2, + [49586] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4858), 1, + aux_sym_preproc_include_token2, + [49593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 1, + ACTIONS(5320), 1, aux_sym_preproc_if_token2, - [65373] = 2, + [49600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5079), 1, - anon_sym_RPAREN, - [65380] = 2, + ACTIONS(5322), 1, + anon_sym_RBRACE, + [49607] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4780), 1, + aux_sym_preproc_include_token2, + [49614] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5324), 1, + aux_sym_preproc_include_token2, + [49621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 1, + aux_sym_preproc_if_token2, + [49628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 1, + ACTIONS(5328), 1, anon_sym_SEMI, - [65387] = 2, + [49635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, - anon_sym_LPAREN2, - [65394] = 2, + ACTIONS(5330), 1, + sym_identifier, + [49642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5085), 1, - anon_sym_LPAREN2, - [65401] = 2, + ACTIONS(3473), 1, + anon_sym_COLON, + [49649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5087), 1, - anon_sym_STAR, - [65408] = 2, + ACTIONS(5332), 1, + sym_identifier, + [49656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, + ACTIONS(5334), 1, anon_sym_RPAREN, - [65415] = 2, + [49663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 1, + ACTIONS(5336), 1, sym_identifier, - [65422] = 2, + [49670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5338), 1, + aux_sym_preproc_if_token2, + [49677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5091), 1, + ACTIONS(5340), 1, sym_identifier, - [65429] = 2, + [49684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, - anon_sym_SEMI, - [65436] = 2, + ACTIONS(5342), 1, + sym_identifier, + [49691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 1, + ACTIONS(5344), 1, aux_sym_preproc_if_token2, - [65443] = 2, + [49698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5095), 1, - anon_sym_SEMI, - [65450] = 2, - ACTIONS(3446), 1, + ACTIONS(5346), 1, + aux_sym_preproc_if_token2, + [49705] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, - aux_sym_preproc_include_token2, - [65457] = 2, + ACTIONS(5348), 1, + aux_sym_preproc_if_token2, + [49712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 1, + ACTIONS(5350), 1, aux_sym_preproc_if_token2, - [65464] = 2, + [49719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 1, + ACTIONS(5352), 1, aux_sym_preproc_if_token2, - [65471] = 2, + [49726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - anon_sym_SEMI, - [65478] = 2, + ACTIONS(5354), 1, + anon_sym_LPAREN2, + [49733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 1, + ACTIONS(5356), 1, sym_identifier, - [65485] = 2, + [49740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5107), 1, - anon_sym_LPAREN2, - [65492] = 2, + ACTIONS(5358), 1, + anon_sym_RPAREN, + [49747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, - aux_sym_preproc_if_token2, - [65499] = 2, - ACTIONS(2258), 1, - aux_sym_preproc_include_token2, - ACTIONS(3446), 1, - sym_comment, - [65506] = 2, + ACTIONS(5360), 1, + anon_sym_RPAREN, + [49754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, - aux_sym_preproc_if_token2, - [65513] = 2, + ACTIONS(5362), 1, + anon_sym_LPAREN2, + [49761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, - aux_sym_preproc_if_token2, - [65520] = 2, + ACTIONS(5364), 1, + sym_identifier, + [49768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5115), 1, - aux_sym_preproc_if_token2, - [65527] = 2, - ACTIONS(3), 1, + ACTIONS(5366), 1, + anon_sym_SEMI, + [49775] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(5117), 1, - aux_sym_preproc_if_token2, - [65534] = 2, + ACTIONS(5368), 1, + aux_sym_preproc_include_token2, + [49782] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5370), 1, + aux_sym_preproc_include_token2, + [49789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5119), 1, + ACTIONS(3437), 1, anon_sym_COLON, - [65541] = 2, + [49796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5121), 1, - anon_sym_STAR, - [65548] = 2, + ACTIONS(3399), 1, + anon_sym_RPAREN, + [49803] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5372), 1, + aux_sym_preproc_include_token2, + [49810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5123), 1, + ACTIONS(5374), 1, aux_sym_preproc_if_token2, - [65555] = 2, + [49817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5125), 1, + ACTIONS(5376), 1, anon_sym_RPAREN, - [65562] = 2, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(5127), 1, - aux_sym_preproc_include_token2, - [65569] = 2, + [49824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(5378), 1, sym_identifier, - [65576] = 2, + [49831] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(5380), 1, + aux_sym_preproc_include_token2, + [49838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5131), 1, - aux_sym_preproc_if_token2, - [65583] = 2, + ACTIONS(5382), 1, + anon_sym_RPAREN, + [49845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5133), 1, + ACTIONS(5384), 1, anon_sym_RPAREN, - [65590] = 2, + [49852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5135), 1, + ACTIONS(5386), 1, aux_sym_preproc_if_token2, - [65597] = 2, + [49859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5137), 1, - sym_identifier, - [65604] = 2, + ACTIONS(5388), 1, + aux_sym_preproc_if_token2, + [49866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, - anon_sym_RPAREN, - [65611] = 2, + ACTIONS(5390), 1, + anon_sym_SEMI, + [49873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_RPAREN, - [65618] = 2, + ACTIONS(5392), 1, + aux_sym_preproc_if_token2, + [49880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_RBRACE, - [65625] = 2, + ACTIONS(3475), 1, + anon_sym_SEMI, + [49887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, + ACTIONS(5394), 1, aux_sym_preproc_if_token2, - [65632] = 2, + [49894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5147), 1, + ACTIONS(5396), 1, aux_sym_preproc_if_token2, - [65639] = 2, + [49901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5149), 1, - anon_sym_RPAREN, - [65646] = 2, + ACTIONS(5398), 1, + sym_identifier, + [49908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5151), 1, - sym_identifier, - [65653] = 2, + ACTIONS(3445), 1, + anon_sym_RPAREN, + [49915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5153), 1, + ACTIONS(5400), 1, sym_identifier, - [65660] = 2, - ACTIONS(3), 1, + [49922] = 2, + ACTIONS(2481), 1, + aux_sym_preproc_include_token2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_COMMA, - [65667] = 2, + [49929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5155), 1, - anon_sym_COLON, - [65674] = 2, - ACTIONS(3195), 1, - aux_sym_preproc_include_token2, - ACTIONS(3446), 1, + ACTIONS(5402), 1, + anon_sym_RPAREN, + [49936] = 2, + ACTIONS(3), 1, sym_comment, - [65681] = 2, + ACTIONS(5404), 1, + aux_sym_preproc_if_token2, + [49943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, + ACTIONS(3395), 1, anon_sym_RPAREN, - [65688] = 2, + [49950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5159), 1, + ACTIONS(5406), 1, sym_identifier, - [65695] = 2, + [49957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(5408), 1, + aux_sym_preproc_if_token2, + [49964] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3389), 1, anon_sym_SEMI, - [65702] = 2, + [49971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(5410), 1, anon_sym_RPAREN, - [65709] = 2, - ACTIONS(3), 1, + [49978] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(5161), 1, - anon_sym_COLON, - [65716] = 2, + ACTIONS(5412), 1, + aux_sym_preproc_include_token2, + [49985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5163), 1, - anon_sym_SEMI, - [65723] = 2, + ACTIONS(5414), 1, + ts_builtin_sym_end, + [49992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, + ACTIONS(5416), 1, anon_sym_LPAREN2, - [65730] = 2, - ACTIONS(2294), 1, - aux_sym_preproc_include_token2, - ACTIONS(3446), 1, - sym_comment, - [65737] = 2, + [49999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, - aux_sym_preproc_if_token2, - [65744] = 2, + ACTIONS(5418), 1, + anon_sym_RBRACE, + [50006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5420), 1, aux_sym_preproc_if_token2, - [65751] = 2, + [50013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5171), 1, + ACTIONS(5422), 1, aux_sym_preproc_if_token2, - [65758] = 2, + [50020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5173), 1, - anon_sym_SEMI, - [65765] = 2, + ACTIONS(5424), 1, + aux_sym_preproc_if_token2, + [50027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 1, - sym_identifier, - [65772] = 2, + ACTIONS(5426), 1, + aux_sym_preproc_if_token2, + [50034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_SEMI, - [65779] = 2, + ACTIONS(3463), 1, + anon_sym_COLON, + [50041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(4917), 1, anon_sym_RPAREN, - [65786] = 2, + [50048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, - anon_sym_SEMI, - [65793] = 2, + ACTIONS(5428), 1, + anon_sym_RPAREN, + [50055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5181), 1, - anon_sym_COLON, - [65800] = 2, - ACTIONS(3), 1, + ACTIONS(5430), 1, + anon_sym_STAR, + [50062] = 2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(3297), 1, - anon_sym_SEMI, - [65807] = 2, + ACTIONS(5432), 1, + aux_sym_preproc_include_token2, + [50069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, + ACTIONS(5434), 1, sym_identifier, - [65814] = 2, + [50076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, - anon_sym_COLON, - [65821] = 2, + ACTIONS(5436), 1, + aux_sym_preproc_if_token2, + [50083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5187), 1, + ACTIONS(5438), 1, sym_identifier, - [65828] = 2, - ACTIONS(3446), 1, + [50090] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5189), 1, - aux_sym_preproc_include_token2, - [65835] = 2, + ACTIONS(5440), 1, + aux_sym_preproc_if_token2, + [50097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5442), 1, sym_identifier, - [65842] = 2, + [50104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, + ACTIONS(5444), 1, sym_identifier, - [65849] = 2, - ACTIONS(3), 1, + [50111] = 2, + ACTIONS(2441), 1, + aux_sym_preproc_include_token2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(5195), 1, - anon_sym_SEMI, - [65856] = 2, + [50118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5197), 1, + ACTIONS(5446), 1, sym_identifier, - [65863] = 2, + [50125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5199), 1, + ACTIONS(5448), 1, aux_sym_preproc_if_token2, - [65870] = 2, + [50132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5201), 1, - anon_sym_RBRACE, - [65877] = 2, + ACTIONS(5450), 1, + aux_sym_preproc_if_token2, + [50139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5203), 1, - aux_sym_preproc_if_token2, - [65884] = 2, + ACTIONS(5452), 1, + anon_sym_COLON, + [50146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5205), 1, + ACTIONS(5454), 1, anon_sym_LPAREN2, - [65891] = 2, + [50153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5207), 1, + ACTIONS(5456), 1, anon_sym_LPAREN2, - [65898] = 2, + [50160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, - anon_sym_RPAREN, - [65905] = 2, + ACTIONS(5458), 1, + anon_sym_LPAREN2, + [50167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, - anon_sym_LPAREN2, - [65912] = 2, + ACTIONS(5460), 1, + aux_sym_preproc_if_token2, + [50174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(5462), 1, anon_sym_RPAREN, - [65919] = 2, + [50181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 1, - sym_identifier, - [65926] = 2, + ACTIONS(5464), 1, + aux_sym_preproc_if_token2, + [50188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, + ACTIONS(5466), 1, anon_sym_RPAREN, - [65933] = 2, + [50195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, - anon_sym_SEMI, - [65940] = 2, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + [50202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 1, - anon_sym_SEMI, - [65947] = 2, + ACTIONS(5470), 1, + sym_number_literal, + [50209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 1, - aux_sym_preproc_if_token2, - [65954] = 2, + ACTIONS(5472), 1, + anon_sym_LPAREN2, + [50216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 1, - aux_sym_preproc_if_token2, - [65961] = 2, + ACTIONS(5474), 1, + anon_sym_RPAREN, + [50223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 1, + ACTIONS(5476), 1, anon_sym_while, - [65968] = 2, + [50230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 1, - anon_sym_RPAREN, - [65975] = 2, + ACTIONS(3403), 1, + anon_sym_SEMI, + [50237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, + ACTIONS(5478), 1, aux_sym_preproc_if_token2, - [65982] = 2, + [50244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5225), 1, - anon_sym_SEMI, - [65989] = 2, + ACTIONS(5480), 1, + aux_sym_preproc_if_token2, + [50251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 1, + ACTIONS(5482), 1, anon_sym_STAR, - [65996] = 2, + [50258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, - sym_identifier, - [66003] = 2, + ACTIONS(3439), 1, + anon_sym_SEMI, + [50265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 1, - anon_sym_RBRACK, - [66010] = 2, + ACTIONS(5484), 1, + anon_sym_SEMI, + [50272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 1, + ACTIONS(5486), 1, anon_sym_SEMI, - [66017] = 2, + [50279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - anon_sym_RBRACK, - [66024] = 2, + ACTIONS(5488), 1, + anon_sym_LPAREN2, + [50286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3481), 1, anon_sym_COLON, - [66031] = 2, - ACTIONS(3), 1, + [50293] = 2, + ACTIONS(3355), 1, + aux_sym_preproc_include_token2, + ACTIONS(3634), 1, sym_comment, - ACTIONS(5237), 1, - anon_sym_STAR, - [66038] = 2, + [50300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(5490), 1, anon_sym_SEMI, - [66045] = 2, + [50307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 1, + ACTIONS(5492), 1, anon_sym_LPAREN2, - [66052] = 2, + [50314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, - aux_sym_preproc_if_token2, - [66059] = 2, + ACTIONS(5494), 1, + anon_sym_SEMI, + [50321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5245), 1, - sym_identifier, - [66066] = 2, + ACTIONS(5496), 1, + anon_sym_while, + [50328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 1, + ACTIONS(5498), 1, anon_sym_while, - [66073] = 2, + [50335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 1, - anon_sym_RPAREN, - [66080] = 2, - ACTIONS(3446), 1, + ACTIONS(5500), 1, + sym_identifier, + [50342] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5251), 1, - aux_sym_preproc_include_token2, - [66087] = 2, + ACTIONS(5502), 1, + anon_sym_STAR, + [50349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 1, - anon_sym_RPAREN, - [66094] = 2, + ACTIONS(5504), 1, + anon_sym_SEMI, + [50356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 1, - anon_sym_COLON, - [66101] = 2, + ACTIONS(5506), 1, + anon_sym_SEMI, + [50363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5255), 1, + ACTIONS(3397), 1, anon_sym_RPAREN, - [66108] = 2, - ACTIONS(3446), 1, + [50370] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 1, - aux_sym_preproc_include_token2, - [66115] = 2, + ACTIONS(3441), 1, + anon_sym_SEMI, + [50377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5259), 1, - anon_sym_RBRACE, - [66122] = 2, + ACTIONS(5508), 1, + aux_sym_preproc_if_token2, + [50384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 1, + ACTIONS(5510), 1, anon_sym_while, - [66129] = 2, + [50391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5263), 1, - anon_sym_COLON, - [66136] = 2, - ACTIONS(3446), 1, - sym_comment, - ACTIONS(4760), 1, - aux_sym_preproc_include_token2, - [66143] = 2, + ACTIONS(5030), 1, + anon_sym_COMMA, + [50398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 1, - aux_sym_preproc_if_token2, - [66150] = 2, + ACTIONS(3401), 1, + anon_sym_SEMI, + [50405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5267), 1, + ACTIONS(5512), 1, aux_sym_preproc_if_token2, - [66157] = 2, + [50412] = 2, + ACTIONS(3634), 1, + sym_comment, + ACTIONS(4719), 1, + aux_sym_preproc_include_token2, + [50419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 1, + ACTIONS(5514), 1, anon_sym_LPAREN2, - [66164] = 2, + [50426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5271), 1, - aux_sym_preproc_if_token2, - [66171] = 2, + ACTIONS(3391), 1, + anon_sym_RPAREN, + [50433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, - aux_sym_preproc_if_token2, - [66178] = 2, + ACTIONS(3387), 1, + anon_sym_RPAREN, + [50440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5275), 1, + ACTIONS(5516), 1, anon_sym_LPAREN2, - [66185] = 2, + [50447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 1, - anon_sym_LPAREN2, - [66192] = 2, + ACTIONS(5518), 1, + sym_identifier, + [50454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5279), 1, - anon_sym_LPAREN2, - [66199] = 2, + ACTIONS(5520), 1, + sym_identifier, + [50461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3221), 1, - anon_sym_COLON, + ACTIONS(5522), 1, + anon_sym_RBRACK, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(455)] = 0, - [SMALL_STATE(456)] = 113, - [SMALL_STATE(457)] = 226, - [SMALL_STATE(458)] = 339, - [SMALL_STATE(459)] = 452, - [SMALL_STATE(460)] = 565, - [SMALL_STATE(461)] = 678, - [SMALL_STATE(462)] = 791, - [SMALL_STATE(463)] = 904, - [SMALL_STATE(464)] = 1017, - [SMALL_STATE(465)] = 1130, - [SMALL_STATE(466)] = 1243, - [SMALL_STATE(467)] = 1356, - [SMALL_STATE(468)] = 1469, - [SMALL_STATE(469)] = 1582, - [SMALL_STATE(470)] = 1695, - [SMALL_STATE(471)] = 1808, - [SMALL_STATE(472)] = 1921, - [SMALL_STATE(473)] = 2034, - [SMALL_STATE(474)] = 2147, - [SMALL_STATE(475)] = 2260, - [SMALL_STATE(476)] = 2373, - [SMALL_STATE(477)] = 2486, - [SMALL_STATE(478)] = 2599, - [SMALL_STATE(479)] = 2712, - [SMALL_STATE(480)] = 2825, - [SMALL_STATE(481)] = 2938, - [SMALL_STATE(482)] = 3051, - [SMALL_STATE(483)] = 3164, - [SMALL_STATE(484)] = 3277, - [SMALL_STATE(485)] = 3387, - [SMALL_STATE(486)] = 3497, - [SMALL_STATE(487)] = 3607, - [SMALL_STATE(488)] = 3717, - [SMALL_STATE(489)] = 3827, - [SMALL_STATE(490)] = 3937, - [SMALL_STATE(491)] = 4047, - [SMALL_STATE(492)] = 4157, - [SMALL_STATE(493)] = 4267, - [SMALL_STATE(494)] = 4377, - [SMALL_STATE(495)] = 4487, - [SMALL_STATE(496)] = 4597, - [SMALL_STATE(497)] = 4707, - [SMALL_STATE(498)] = 4817, - [SMALL_STATE(499)] = 4927, - [SMALL_STATE(500)] = 5034, - [SMALL_STATE(501)] = 5141, - [SMALL_STATE(502)] = 5248, - [SMALL_STATE(503)] = 5355, - [SMALL_STATE(504)] = 5462, - [SMALL_STATE(505)] = 5569, - [SMALL_STATE(506)] = 5676, - [SMALL_STATE(507)] = 5783, - [SMALL_STATE(508)] = 5890, - [SMALL_STATE(509)] = 5997, - [SMALL_STATE(510)] = 6104, - [SMALL_STATE(511)] = 6211, - [SMALL_STATE(512)] = 6318, - [SMALL_STATE(513)] = 6425, - [SMALL_STATE(514)] = 6532, - [SMALL_STATE(515)] = 6639, - [SMALL_STATE(516)] = 6746, - [SMALL_STATE(517)] = 6853, - [SMALL_STATE(518)] = 6960, - [SMALL_STATE(519)] = 7067, - [SMALL_STATE(520)] = 7174, - [SMALL_STATE(521)] = 7281, - [SMALL_STATE(522)] = 7388, - [SMALL_STATE(523)] = 7495, - [SMALL_STATE(524)] = 7602, - [SMALL_STATE(525)] = 7709, - [SMALL_STATE(526)] = 7816, - [SMALL_STATE(527)] = 7923, - [SMALL_STATE(528)] = 8014, - [SMALL_STATE(529)] = 8121, - [SMALL_STATE(530)] = 8228, - [SMALL_STATE(531)] = 8335, - [SMALL_STATE(532)] = 8442, - [SMALL_STATE(533)] = 8549, - [SMALL_STATE(534)] = 8656, - [SMALL_STATE(535)] = 8763, - [SMALL_STATE(536)] = 8870, - [SMALL_STATE(537)] = 8977, - [SMALL_STATE(538)] = 9084, - [SMALL_STATE(539)] = 9191, - [SMALL_STATE(540)] = 9298, - [SMALL_STATE(541)] = 9405, - [SMALL_STATE(542)] = 9512, - [SMALL_STATE(543)] = 9619, - [SMALL_STATE(544)] = 9726, - [SMALL_STATE(545)] = 9833, - [SMALL_STATE(546)] = 9940, - [SMALL_STATE(547)] = 10047, - [SMALL_STATE(548)] = 10154, - [SMALL_STATE(549)] = 10261, - [SMALL_STATE(550)] = 10368, - [SMALL_STATE(551)] = 10475, - [SMALL_STATE(552)] = 10582, - [SMALL_STATE(553)] = 10689, - [SMALL_STATE(554)] = 10796, - [SMALL_STATE(555)] = 10903, - [SMALL_STATE(556)] = 11010, - [SMALL_STATE(557)] = 11117, - [SMALL_STATE(558)] = 11224, - [SMALL_STATE(559)] = 11331, - [SMALL_STATE(560)] = 11438, - [SMALL_STATE(561)] = 11545, - [SMALL_STATE(562)] = 11652, - [SMALL_STATE(563)] = 11759, - [SMALL_STATE(564)] = 11866, - [SMALL_STATE(565)] = 11973, - [SMALL_STATE(566)] = 12080, - [SMALL_STATE(567)] = 12187, - [SMALL_STATE(568)] = 12294, - [SMALL_STATE(569)] = 12401, - [SMALL_STATE(570)] = 12508, - [SMALL_STATE(571)] = 12615, - [SMALL_STATE(572)] = 12722, - [SMALL_STATE(573)] = 12829, - [SMALL_STATE(574)] = 12936, - [SMALL_STATE(575)] = 13043, - [SMALL_STATE(576)] = 13150, - [SMALL_STATE(577)] = 13257, - [SMALL_STATE(578)] = 13364, - [SMALL_STATE(579)] = 13471, - [SMALL_STATE(580)] = 13578, - [SMALL_STATE(581)] = 13685, - [SMALL_STATE(582)] = 13792, - [SMALL_STATE(583)] = 13899, - [SMALL_STATE(584)] = 14006, - [SMALL_STATE(585)] = 14113, - [SMALL_STATE(586)] = 14220, - [SMALL_STATE(587)] = 14327, - [SMALL_STATE(588)] = 14434, - [SMALL_STATE(589)] = 14541, - [SMALL_STATE(590)] = 14648, - [SMALL_STATE(591)] = 14755, - [SMALL_STATE(592)] = 14862, - [SMALL_STATE(593)] = 14969, - [SMALL_STATE(594)] = 15076, - [SMALL_STATE(595)] = 15183, - [SMALL_STATE(596)] = 15290, - [SMALL_STATE(597)] = 15397, - [SMALL_STATE(598)] = 15504, - [SMALL_STATE(599)] = 15611, - [SMALL_STATE(600)] = 15718, - [SMALL_STATE(601)] = 15825, - [SMALL_STATE(602)] = 15932, - [SMALL_STATE(603)] = 16039, - [SMALL_STATE(604)] = 16146, - [SMALL_STATE(605)] = 16253, - [SMALL_STATE(606)] = 16360, - [SMALL_STATE(607)] = 16467, - [SMALL_STATE(608)] = 16574, - [SMALL_STATE(609)] = 16681, - [SMALL_STATE(610)] = 16788, - [SMALL_STATE(611)] = 16895, - [SMALL_STATE(612)] = 17002, - [SMALL_STATE(613)] = 17109, - [SMALL_STATE(614)] = 17216, - [SMALL_STATE(615)] = 17323, - [SMALL_STATE(616)] = 17430, - [SMALL_STATE(617)] = 17537, - [SMALL_STATE(618)] = 17644, - [SMALL_STATE(619)] = 17751, - [SMALL_STATE(620)] = 17858, - [SMALL_STATE(621)] = 17930, - [SMALL_STATE(622)] = 18002, - [SMALL_STATE(623)] = 18074, - [SMALL_STATE(624)] = 18181, - [SMALL_STATE(625)] = 18290, - [SMALL_STATE(626)] = 18359, - [SMALL_STATE(627)] = 18439, - [SMALL_STATE(628)] = 18503, - [SMALL_STATE(629)] = 18567, - [SMALL_STATE(630)] = 18631, - [SMALL_STATE(631)] = 18695, - [SMALL_STATE(632)] = 18759, - [SMALL_STATE(633)] = 18823, - [SMALL_STATE(634)] = 18887, - [SMALL_STATE(635)] = 18951, - [SMALL_STATE(636)] = 19015, - [SMALL_STATE(637)] = 19079, - [SMALL_STATE(638)] = 19143, - [SMALL_STATE(639)] = 19207, - [SMALL_STATE(640)] = 19308, - [SMALL_STATE(641)] = 19409, - [SMALL_STATE(642)] = 19510, - [SMALL_STATE(643)] = 19611, - [SMALL_STATE(644)] = 19712, - [SMALL_STATE(645)] = 19813, - [SMALL_STATE(646)] = 19914, - [SMALL_STATE(647)] = 20015, - [SMALL_STATE(648)] = 20113, - [SMALL_STATE(649)] = 20175, - [SMALL_STATE(650)] = 20273, - [SMALL_STATE(651)] = 20373, - [SMALL_STATE(652)] = 20468, - [SMALL_STATE(653)] = 20563, - [SMALL_STATE(654)] = 20624, - [SMALL_STATE(655)] = 20719, - [SMALL_STATE(656)] = 20814, - [SMALL_STATE(657)] = 20875, - [SMALL_STATE(658)] = 20970, - [SMALL_STATE(659)] = 21065, - [SMALL_STATE(660)] = 21126, - [SMALL_STATE(661)] = 21221, - [SMALL_STATE(662)] = 21316, - [SMALL_STATE(663)] = 21387, - [SMALL_STATE(664)] = 21453, - [SMALL_STATE(665)] = 21513, - [SMALL_STATE(666)] = 21581, - [SMALL_STATE(667)] = 21672, - [SMALL_STATE(668)] = 21731, - [SMALL_STATE(669)] = 21790, - [SMALL_STATE(670)] = 21849, - [SMALL_STATE(671)] = 21908, - [SMALL_STATE(672)] = 21967, - [SMALL_STATE(673)] = 22026, - [SMALL_STATE(674)] = 22085, - [SMALL_STATE(675)] = 22144, - [SMALL_STATE(676)] = 22203, - [SMALL_STATE(677)] = 22294, - [SMALL_STATE(678)] = 22353, - [SMALL_STATE(679)] = 22412, - [SMALL_STATE(680)] = 22471, - [SMALL_STATE(681)] = 22530, - [SMALL_STATE(682)] = 22589, - [SMALL_STATE(683)] = 22648, - [SMALL_STATE(684)] = 22739, - [SMALL_STATE(685)] = 22798, - [SMALL_STATE(686)] = 22889, - [SMALL_STATE(687)] = 22980, - [SMALL_STATE(688)] = 23071, - [SMALL_STATE(689)] = 23162, - [SMALL_STATE(690)] = 23253, - [SMALL_STATE(691)] = 23312, - [SMALL_STATE(692)] = 23378, - [SMALL_STATE(693)] = 23446, - [SMALL_STATE(694)] = 23504, - [SMALL_STATE(695)] = 23562, - [SMALL_STATE(696)] = 23650, - [SMALL_STATE(697)] = 23708, - [SMALL_STATE(698)] = 23776, - [SMALL_STATE(699)] = 23834, - [SMALL_STATE(700)] = 23902, - [SMALL_STATE(701)] = 23960, - [SMALL_STATE(702)] = 24028, - [SMALL_STATE(703)] = 24096, - [SMALL_STATE(704)] = 24161, - [SMALL_STATE(705)] = 24234, - [SMALL_STATE(706)] = 24299, - [SMALL_STATE(707)] = 24356, - [SMALL_STATE(708)] = 24413, - [SMALL_STATE(709)] = 24478, - [SMALL_STATE(710)] = 24543, - [SMALL_STATE(711)] = 24608, - [SMALL_STATE(712)] = 24665, - [SMALL_STATE(713)] = 24738, - [SMALL_STATE(714)] = 24799, - [SMALL_STATE(715)] = 24864, - [SMALL_STATE(716)] = 24929, - [SMALL_STATE(717)] = 25001, - [SMALL_STATE(718)] = 25057, - [SMALL_STATE(719)] = 25113, - [SMALL_STATE(720)] = 25185, - [SMALL_STATE(721)] = 25257, - [SMALL_STATE(722)] = 25329, - [SMALL_STATE(723)] = 25385, - [SMALL_STATE(724)] = 25444, - [SMALL_STATE(725)] = 25503, - [SMALL_STATE(726)] = 25562, - [SMALL_STATE(727)] = 25621, - [SMALL_STATE(728)] = 25680, - [SMALL_STATE(729)] = 25739, - [SMALL_STATE(730)] = 25798, - [SMALL_STATE(731)] = 25857, - [SMALL_STATE(732)] = 25916, - [SMALL_STATE(733)] = 25975, - [SMALL_STATE(734)] = 26034, - [SMALL_STATE(735)] = 26088, - [SMALL_STATE(736)] = 26142, - [SMALL_STATE(737)] = 26200, - [SMALL_STATE(738)] = 26258, - [SMALL_STATE(739)] = 26312, - [SMALL_STATE(740)] = 26370, - [SMALL_STATE(741)] = 26424, - [SMALL_STATE(742)] = 26482, - [SMALL_STATE(743)] = 26540, - [SMALL_STATE(744)] = 26598, - [SMALL_STATE(745)] = 26656, - [SMALL_STATE(746)] = 26714, - [SMALL_STATE(747)] = 26768, - [SMALL_STATE(748)] = 26822, - [SMALL_STATE(749)] = 26876, - [SMALL_STATE(750)] = 26930, - [SMALL_STATE(751)] = 26990, - [SMALL_STATE(752)] = 27044, - [SMALL_STATE(753)] = 27098, - [SMALL_STATE(754)] = 27152, - [SMALL_STATE(755)] = 27212, - [SMALL_STATE(756)] = 27266, - [SMALL_STATE(757)] = 27320, - [SMALL_STATE(758)] = 27374, - [SMALL_STATE(759)] = 27428, - [SMALL_STATE(760)] = 27482, - [SMALL_STATE(761)] = 27536, - [SMALL_STATE(762)] = 27590, - [SMALL_STATE(763)] = 27648, - [SMALL_STATE(764)] = 27702, - [SMALL_STATE(765)] = 27760, - [SMALL_STATE(766)] = 27818, - [SMALL_STATE(767)] = 27872, - [SMALL_STATE(768)] = 27930, - [SMALL_STATE(769)] = 27984, - [SMALL_STATE(770)] = 28038, - [SMALL_STATE(771)] = 28092, - [SMALL_STATE(772)] = 28146, - [SMALL_STATE(773)] = 28200, - [SMALL_STATE(774)] = 28254, - [SMALL_STATE(775)] = 28308, - [SMALL_STATE(776)] = 28361, - [SMALL_STATE(777)] = 28414, - [SMALL_STATE(778)] = 28467, - [SMALL_STATE(779)] = 28530, - [SMALL_STATE(780)] = 28583, - [SMALL_STATE(781)] = 28636, - [SMALL_STATE(782)] = 28689, - [SMALL_STATE(783)] = 28760, - [SMALL_STATE(784)] = 28823, - [SMALL_STATE(785)] = 28914, - [SMALL_STATE(786)] = 28967, - [SMALL_STATE(787)] = 29030, - [SMALL_STATE(788)] = 29083, - [SMALL_STATE(789)] = 29174, - [SMALL_STATE(790)] = 29245, - [SMALL_STATE(791)] = 29308, - [SMALL_STATE(792)] = 29361, - [SMALL_STATE(793)] = 29414, - [SMALL_STATE(794)] = 29477, - [SMALL_STATE(795)] = 29540, - [SMALL_STATE(796)] = 29593, - [SMALL_STATE(797)] = 29664, - [SMALL_STATE(798)] = 29717, - [SMALL_STATE(799)] = 29770, - [SMALL_STATE(800)] = 29823, - [SMALL_STATE(801)] = 29876, - [SMALL_STATE(802)] = 29947, - [SMALL_STATE(803)] = 30000, - [SMALL_STATE(804)] = 30053, - [SMALL_STATE(805)] = 30106, - [SMALL_STATE(806)] = 30188, - [SMALL_STATE(807)] = 30268, - [SMALL_STATE(808)] = 30346, - [SMALL_STATE(809)] = 30422, - [SMALL_STATE(810)] = 30496, - [SMALL_STATE(811)] = 30568, - [SMALL_STATE(812)] = 30636, - [SMALL_STATE(813)] = 30702, - [SMALL_STATE(814)] = 30788, - [SMALL_STATE(815)] = 30874, - [SMALL_STATE(816)] = 30954, - [SMALL_STATE(817)] = 31028, - [SMALL_STATE(818)] = 31112, - [SMALL_STATE(819)] = 31184, - [SMALL_STATE(820)] = 31252, - [SMALL_STATE(821)] = 31310, - [SMALL_STATE(822)] = 31368, - [SMALL_STATE(823)] = 31434, - [SMALL_STATE(824)] = 31512, - [SMALL_STATE(825)] = 31574, - [SMALL_STATE(826)] = 31658, - [SMALL_STATE(827)] = 31740, - [SMALL_STATE(828)] = 31800, - [SMALL_STATE(829)] = 31886, - [SMALL_STATE(830)] = 31972, - [SMALL_STATE(831)] = 32036, - [SMALL_STATE(832)] = 32112, - [SMALL_STATE(833)] = 32198, - [SMALL_STATE(834)] = 32262, - [SMALL_STATE(835)] = 32348, - [SMALL_STATE(836)] = 32403, - [SMALL_STATE(837)] = 32462, - [SMALL_STATE(838)] = 32517, - [SMALL_STATE(839)] = 32603, - [SMALL_STATE(840)] = 32653, - [SMALL_STATE(841)] = 32739, - [SMALL_STATE(842)] = 32789, - [SMALL_STATE(843)] = 32838, - [SMALL_STATE(844)] = 32887, - [SMALL_STATE(845)] = 32936, - [SMALL_STATE(846)] = 32985, - [SMALL_STATE(847)] = 33034, - [SMALL_STATE(848)] = 33083, - [SMALL_STATE(849)] = 33136, - [SMALL_STATE(850)] = 33185, - [SMALL_STATE(851)] = 33234, - [SMALL_STATE(852)] = 33283, - [SMALL_STATE(853)] = 33332, - [SMALL_STATE(854)] = 33381, - [SMALL_STATE(855)] = 33430, - [SMALL_STATE(856)] = 33479, - [SMALL_STATE(857)] = 33528, - [SMALL_STATE(858)] = 33577, - [SMALL_STATE(859)] = 33626, - [SMALL_STATE(860)] = 33675, - [SMALL_STATE(861)] = 33724, - [SMALL_STATE(862)] = 33773, - [SMALL_STATE(863)] = 33822, - [SMALL_STATE(864)] = 33871, - [SMALL_STATE(865)] = 33920, - [SMALL_STATE(866)] = 33969, - [SMALL_STATE(867)] = 34018, - [SMALL_STATE(868)] = 34067, - [SMALL_STATE(869)] = 34116, - [SMALL_STATE(870)] = 34165, - [SMALL_STATE(871)] = 34214, - [SMALL_STATE(872)] = 34263, - [SMALL_STATE(873)] = 34312, - [SMALL_STATE(874)] = 34365, - [SMALL_STATE(875)] = 34418, - [SMALL_STATE(876)] = 34467, - [SMALL_STATE(877)] = 34516, - [SMALL_STATE(878)] = 34569, - [SMALL_STATE(879)] = 34618, - [SMALL_STATE(880)] = 34667, - [SMALL_STATE(881)] = 34716, - [SMALL_STATE(882)] = 34769, - [SMALL_STATE(883)] = 34822, - [SMALL_STATE(884)] = 34875, - [SMALL_STATE(885)] = 34924, - [SMALL_STATE(886)] = 34983, - [SMALL_STATE(887)] = 35030, - [SMALL_STATE(888)] = 35107, - [SMALL_STATE(889)] = 35166, - [SMALL_STATE(890)] = 35225, - [SMALL_STATE(891)] = 35284, - [SMALL_STATE(892)] = 35367, - [SMALL_STATE(893)] = 35428, - [SMALL_STATE(894)] = 35507, - [SMALL_STATE(895)] = 35582, - [SMALL_STATE(896)] = 35655, - [SMALL_STATE(897)] = 35726, - [SMALL_STATE(898)] = 35795, - [SMALL_STATE(899)] = 35860, - [SMALL_STATE(900)] = 35923, - [SMALL_STATE(901)] = 36006, - [SMALL_STATE(902)] = 36089, - [SMALL_STATE(903)] = 36170, - [SMALL_STATE(904)] = 36247, - [SMALL_STATE(905)] = 36324, - [SMALL_STATE(906)] = 36381, - [SMALL_STATE(907)] = 36440, - [SMALL_STATE(908)] = 36499, - [SMALL_STATE(909)] = 36576, - [SMALL_STATE(910)] = 36653, - [SMALL_STATE(911)] = 36699, - [SMALL_STATE(912)] = 36749, - [SMALL_STATE(913)] = 36803, - [SMALL_STATE(914)] = 36849, - [SMALL_STATE(915)] = 36895, - [SMALL_STATE(916)] = 36941, - [SMALL_STATE(917)] = 36987, - [SMALL_STATE(918)] = 37033, - [SMALL_STATE(919)] = 37079, - [SMALL_STATE(920)] = 37125, - [SMALL_STATE(921)] = 37171, - [SMALL_STATE(922)] = 37217, - [SMALL_STATE(923)] = 37263, - [SMALL_STATE(924)] = 37309, - [SMALL_STATE(925)] = 37365, - [SMALL_STATE(926)] = 37411, - [SMALL_STATE(927)] = 37486, - [SMALL_STATE(928)] = 37561, - [SMALL_STATE(929)] = 37612, - [SMALL_STATE(930)] = 37656, - [SMALL_STATE(931)] = 37700, - [SMALL_STATE(932)] = 37744, - [SMALL_STATE(933)] = 37788, - [SMALL_STATE(934)] = 37832, - [SMALL_STATE(935)] = 37876, - [SMALL_STATE(936)] = 37920, - [SMALL_STATE(937)] = 37964, - [SMALL_STATE(938)] = 38008, - [SMALL_STATE(939)] = 38052, - [SMALL_STATE(940)] = 38103, - [SMALL_STATE(941)] = 38146, - [SMALL_STATE(942)] = 38219, - [SMALL_STATE(943)] = 38262, - [SMALL_STATE(944)] = 38335, - [SMALL_STATE(945)] = 38378, - [SMALL_STATE(946)] = 38446, - [SMALL_STATE(947)] = 38516, - [SMALL_STATE(948)] = 38586, - [SMALL_STATE(949)] = 38654, - [SMALL_STATE(950)] = 38722, - [SMALL_STATE(951)] = 38790, - [SMALL_STATE(952)] = 38858, - [SMALL_STATE(953)] = 38926, - [SMALL_STATE(954)] = 38994, - [SMALL_STATE(955)] = 39062, - [SMALL_STATE(956)] = 39130, - [SMALL_STATE(957)] = 39198, - [SMALL_STATE(958)] = 39266, - [SMALL_STATE(959)] = 39334, - [SMALL_STATE(960)] = 39407, - [SMALL_STATE(961)] = 39470, - [SMALL_STATE(962)] = 39527, - [SMALL_STATE(963)] = 39604, - [SMALL_STATE(964)] = 39681, - [SMALL_STATE(965)] = 39736, - [SMALL_STATE(966)] = 39809, - [SMALL_STATE(967)] = 39880, - [SMALL_STATE(968)] = 39949, - [SMALL_STATE(969)] = 40016, - [SMALL_STATE(970)] = 40081, - [SMALL_STATE(971)] = 40144, - [SMALL_STATE(972)] = 40203, - [SMALL_STATE(973)] = 40260, - [SMALL_STATE(974)] = 40337, - [SMALL_STATE(975)] = 40414, - [SMALL_STATE(976)] = 40469, - [SMALL_STATE(977)] = 40540, - [SMALL_STATE(978)] = 40609, - [SMALL_STATE(979)] = 40686, - [SMALL_STATE(980)] = 40753, - [SMALL_STATE(981)] = 40828, - [SMALL_STATE(982)] = 40903, - [SMALL_STATE(983)] = 40980, - [SMALL_STATE(984)] = 41057, - [SMALL_STATE(985)] = 41122, - [SMALL_STATE(986)] = 41181, - [SMALL_STATE(987)] = 41221, - [SMALL_STATE(988)] = 41285, - [SMALL_STATE(989)] = 41349, - [SMALL_STATE(990)] = 41389, - [SMALL_STATE(991)] = 41429, - [SMALL_STATE(992)] = 41469, - [SMALL_STATE(993)] = 41533, - [SMALL_STATE(994)] = 41597, - [SMALL_STATE(995)] = 41661, - [SMALL_STATE(996)] = 41725, - [SMALL_STATE(997)] = 41789, - [SMALL_STATE(998)] = 41853, - [SMALL_STATE(999)] = 41893, - [SMALL_STATE(1000)] = 41957, - [SMALL_STATE(1001)] = 42021, - [SMALL_STATE(1002)] = 42061, - [SMALL_STATE(1003)] = 42125, - [SMALL_STATE(1004)] = 42189, - [SMALL_STATE(1005)] = 42253, - [SMALL_STATE(1006)] = 42314, - [SMALL_STATE(1007)] = 42375, - [SMALL_STATE(1008)] = 42436, - [SMALL_STATE(1009)] = 42497, - [SMALL_STATE(1010)] = 42558, - [SMALL_STATE(1011)] = 42619, - [SMALL_STATE(1012)] = 42665, - [SMALL_STATE(1013)] = 42739, - [SMALL_STATE(1014)] = 42813, - [SMALL_STATE(1015)] = 42861, - [SMALL_STATE(1016)] = 42936, - [SMALL_STATE(1017)] = 43011, - [SMALL_STATE(1018)] = 43086, - [SMALL_STATE(1019)] = 43161, - [SMALL_STATE(1020)] = 43233, - [SMALL_STATE(1021)] = 43305, - [SMALL_STATE(1022)] = 43345, - [SMALL_STATE(1023)] = 43417, - [SMALL_STATE(1024)] = 43487, - [SMALL_STATE(1025)] = 43559, - [SMALL_STATE(1026)] = 43629, - [SMALL_STATE(1027)] = 43679, - [SMALL_STATE(1028)] = 43751, - [SMALL_STATE(1029)] = 43823, - [SMALL_STATE(1030)] = 43895, - [SMALL_STATE(1031)] = 43965, - [SMALL_STATE(1032)] = 44037, - [SMALL_STATE(1033)] = 44107, - [SMALL_STATE(1034)] = 44179, - [SMALL_STATE(1035)] = 44251, - [SMALL_STATE(1036)] = 44323, - [SMALL_STATE(1037)] = 44393, - [SMALL_STATE(1038)] = 44465, - [SMALL_STATE(1039)] = 44537, - [SMALL_STATE(1040)] = 44611, - [SMALL_STATE(1041)] = 44683, - [SMALL_STATE(1042)] = 44753, - [SMALL_STATE(1043)] = 44825, - [SMALL_STATE(1044)] = 44895, - [SMALL_STATE(1045)] = 44945, - [SMALL_STATE(1046)] = 45017, - [SMALL_STATE(1047)] = 45089, - [SMALL_STATE(1048)] = 45161, - [SMALL_STATE(1049)] = 45233, - [SMALL_STATE(1050)] = 45305, - [SMALL_STATE(1051)] = 45345, - [SMALL_STATE(1052)] = 45417, - [SMALL_STATE(1053)] = 45489, - [SMALL_STATE(1054)] = 45559, - [SMALL_STATE(1055)] = 45611, - [SMALL_STATE(1056)] = 45683, - [SMALL_STATE(1057)] = 45755, - [SMALL_STATE(1058)] = 45827, - [SMALL_STATE(1059)] = 45895, - [SMALL_STATE(1060)] = 45961, - [SMALL_STATE(1061)] = 46027, - [SMALL_STATE(1062)] = 46091, - [SMALL_STATE(1063)] = 46153, - [SMALL_STATE(1064)] = 46213, - [SMALL_STATE(1065)] = 46269, - [SMALL_STATE(1066)] = 46341, - [SMALL_STATE(1067)] = 46395, - [SMALL_STATE(1068)] = 46467, - [SMALL_STATE(1069)] = 46507, - [SMALL_STATE(1070)] = 46579, - [SMALL_STATE(1071)] = 46651, - [SMALL_STATE(1072)] = 46720, - [SMALL_STATE(1073)] = 46789, - [SMALL_STATE(1074)] = 46858, - [SMALL_STATE(1075)] = 46913, - [SMALL_STATE(1076)] = 46982, - [SMALL_STATE(1077)] = 47051, - [SMALL_STATE(1078)] = 47106, - [SMALL_STATE(1079)] = 47175, - [SMALL_STATE(1080)] = 47230, - [SMALL_STATE(1081)] = 47299, - [SMALL_STATE(1082)] = 47368, - [SMALL_STATE(1083)] = 47437, - [SMALL_STATE(1084)] = 47506, - [SMALL_STATE(1085)] = 47575, - [SMALL_STATE(1086)] = 47644, - [SMALL_STATE(1087)] = 47699, - [SMALL_STATE(1088)] = 47768, - [SMALL_STATE(1089)] = 47837, - [SMALL_STATE(1090)] = 47906, - [SMALL_STATE(1091)] = 47975, - [SMALL_STATE(1092)] = 48044, - [SMALL_STATE(1093)] = 48113, - [SMALL_STATE(1094)] = 48168, - [SMALL_STATE(1095)] = 48237, - [SMALL_STATE(1096)] = 48306, - [SMALL_STATE(1097)] = 48375, - [SMALL_STATE(1098)] = 48444, - [SMALL_STATE(1099)] = 48499, - [SMALL_STATE(1100)] = 48568, - [SMALL_STATE(1101)] = 48637, - [SMALL_STATE(1102)] = 48703, - [SMALL_STATE(1103)] = 48755, - [SMALL_STATE(1104)] = 48791, - [SMALL_STATE(1105)] = 48843, - [SMALL_STATE(1106)] = 48895, - [SMALL_STATE(1107)] = 48947, - [SMALL_STATE(1108)] = 48999, - [SMALL_STATE(1109)] = 49051, - [SMALL_STATE(1110)] = 49103, - [SMALL_STATE(1111)] = 49155, - [SMALL_STATE(1112)] = 49207, - [SMALL_STATE(1113)] = 49256, - [SMALL_STATE(1114)] = 49295, - [SMALL_STATE(1115)] = 49344, - [SMALL_STATE(1116)] = 49384, - [SMALL_STATE(1117)] = 49424, - [SMALL_STATE(1118)] = 49464, - [SMALL_STATE(1119)] = 49520, - [SMALL_STATE(1120)] = 49560, - [SMALL_STATE(1121)] = 49609, - [SMALL_STATE(1122)] = 49643, - [SMALL_STATE(1123)] = 49677, - [SMALL_STATE(1124)] = 49711, - [SMALL_STATE(1125)] = 49745, - [SMALL_STATE(1126)] = 49779, - [SMALL_STATE(1127)] = 49813, - [SMALL_STATE(1128)] = 49847, - [SMALL_STATE(1129)] = 49901, - [SMALL_STATE(1130)] = 49935, - [SMALL_STATE(1131)] = 49969, - [SMALL_STATE(1132)] = 50003, - [SMALL_STATE(1133)] = 50057, - [SMALL_STATE(1134)] = 50111, - [SMALL_STATE(1135)] = 50145, - [SMALL_STATE(1136)] = 50179, - [SMALL_STATE(1137)] = 50213, - [SMALL_STATE(1138)] = 50249, - [SMALL_STATE(1139)] = 50283, - [SMALL_STATE(1140)] = 50337, - [SMALL_STATE(1141)] = 50388, - [SMALL_STATE(1142)] = 50421, - [SMALL_STATE(1143)] = 50472, - [SMALL_STATE(1144)] = 50523, - [SMALL_STATE(1145)] = 50574, - [SMALL_STATE(1146)] = 50625, - [SMALL_STATE(1147)] = 50668, - [SMALL_STATE(1148)] = 50719, - [SMALL_STATE(1149)] = 50770, - [SMALL_STATE(1150)] = 50825, - [SMALL_STATE(1151)] = 50868, - [SMALL_STATE(1152)] = 50919, - [SMALL_STATE(1153)] = 50974, - [SMALL_STATE(1154)] = 51029, - [SMALL_STATE(1155)] = 51080, - [SMALL_STATE(1156)] = 51131, - [SMALL_STATE(1157)] = 51182, - [SMALL_STATE(1158)] = 51225, - [SMALL_STATE(1159)] = 51266, - [SMALL_STATE(1160)] = 51306, - [SMALL_STATE(1161)] = 51346, - [SMALL_STATE(1162)] = 51386, - [SMALL_STATE(1163)] = 51426, - [SMALL_STATE(1164)] = 51466, - [SMALL_STATE(1165)] = 51506, - [SMALL_STATE(1166)] = 51534, - [SMALL_STATE(1167)] = 51574, - [SMALL_STATE(1168)] = 51614, - [SMALL_STATE(1169)] = 51654, - [SMALL_STATE(1170)] = 51694, - [SMALL_STATE(1171)] = 51734, - [SMALL_STATE(1172)] = 51774, - [SMALL_STATE(1173)] = 51814, - [SMALL_STATE(1174)] = 51854, - [SMALL_STATE(1175)] = 51894, - [SMALL_STATE(1176)] = 51934, - [SMALL_STATE(1177)] = 51974, - [SMALL_STATE(1178)] = 52014, - [SMALL_STATE(1179)] = 52054, - [SMALL_STATE(1180)] = 52088, - [SMALL_STATE(1181)] = 52128, - [SMALL_STATE(1182)] = 52156, - [SMALL_STATE(1183)] = 52206, - [SMALL_STATE(1184)] = 52246, - [SMALL_STATE(1185)] = 52286, - [SMALL_STATE(1186)] = 52326, - [SMALL_STATE(1187)] = 52366, - [SMALL_STATE(1188)] = 52406, - [SMALL_STATE(1189)] = 52446, - [SMALL_STATE(1190)] = 52486, - [SMALL_STATE(1191)] = 52526, - [SMALL_STATE(1192)] = 52566, - [SMALL_STATE(1193)] = 52606, - [SMALL_STATE(1194)] = 52634, - [SMALL_STATE(1195)] = 52674, - [SMALL_STATE(1196)] = 52714, - [SMALL_STATE(1197)] = 52746, - [SMALL_STATE(1198)] = 52786, - [SMALL_STATE(1199)] = 52826, - [SMALL_STATE(1200)] = 52866, - [SMALL_STATE(1201)] = 52906, - [SMALL_STATE(1202)] = 52934, - [SMALL_STATE(1203)] = 52974, - [SMALL_STATE(1204)] = 53022, - [SMALL_STATE(1205)] = 53058, - [SMALL_STATE(1206)] = 53098, - [SMALL_STATE(1207)] = 53138, - [SMALL_STATE(1208)] = 53184, - [SMALL_STATE(1209)] = 53212, - [SMALL_STATE(1210)] = 53258, - [SMALL_STATE(1211)] = 53302, - [SMALL_STATE(1212)] = 53344, - [SMALL_STATE(1213)] = 53372, - [SMALL_STATE(1214)] = 53412, - [SMALL_STATE(1215)] = 53461, - [SMALL_STATE(1216)] = 53488, - [SMALL_STATE(1217)] = 53517, - [SMALL_STATE(1218)] = 53544, - [SMALL_STATE(1219)] = 53587, - [SMALL_STATE(1220)] = 53628, - [SMALL_STATE(1221)] = 53667, - [SMALL_STATE(1222)] = 53704, - [SMALL_STATE(1223)] = 53739, - [SMALL_STATE(1224)] = 53772, - [SMALL_STATE(1225)] = 53803, - [SMALL_STATE(1226)] = 53848, - [SMALL_STATE(1227)] = 53893, - [SMALL_STATE(1228)] = 53920, - [SMALL_STATE(1229)] = 53965, - [SMALL_STATE(1230)] = 54010, - [SMALL_STATE(1231)] = 54037, - [SMALL_STATE(1232)] = 54082, - [SMALL_STATE(1233)] = 54131, - [SMALL_STATE(1234)] = 54158, - [SMALL_STATE(1235)] = 54203, - [SMALL_STATE(1236)] = 54248, - [SMALL_STATE(1237)] = 54275, - [SMALL_STATE(1238)] = 54302, - [SMALL_STATE(1239)] = 54329, - [SMALL_STATE(1240)] = 54356, - [SMALL_STATE(1241)] = 54399, - [SMALL_STATE(1242)] = 54444, - [SMALL_STATE(1243)] = 54471, - [SMALL_STATE(1244)] = 54514, - [SMALL_STATE(1245)] = 54559, - [SMALL_STATE(1246)] = 54604, - [SMALL_STATE(1247)] = 54649, - [SMALL_STATE(1248)] = 54694, - [SMALL_STATE(1249)] = 54737, - [SMALL_STATE(1250)] = 54782, - [SMALL_STATE(1251)] = 54827, - [SMALL_STATE(1252)] = 54870, - [SMALL_STATE(1253)] = 54915, - [SMALL_STATE(1254)] = 54955, - [SMALL_STATE(1255)] = 54991, - [SMALL_STATE(1256)] = 55031, - [SMALL_STATE(1257)] = 55071, - [SMALL_STATE(1258)] = 55115, - [SMALL_STATE(1259)] = 55155, - [SMALL_STATE(1260)] = 55195, - [SMALL_STATE(1261)] = 55237, - [SMALL_STATE(1262)] = 55277, - [SMALL_STATE(1263)] = 55308, - [SMALL_STATE(1264)] = 55347, - [SMALL_STATE(1265)] = 55378, - [SMALL_STATE(1266)] = 55419, - [SMALL_STATE(1267)] = 55460, - [SMALL_STATE(1268)] = 55501, - [SMALL_STATE(1269)] = 55532, - [SMALL_STATE(1270)] = 55563, - [SMALL_STATE(1271)] = 55604, - [SMALL_STATE(1272)] = 55645, - [SMALL_STATE(1273)] = 55686, - [SMALL_STATE(1274)] = 55727, - [SMALL_STATE(1275)] = 55768, - [SMALL_STATE(1276)] = 55810, - [SMALL_STATE(1277)] = 55848, - [SMALL_STATE(1278)] = 55876, - [SMALL_STATE(1279)] = 55918, - [SMALL_STATE(1280)] = 55960, - [SMALL_STATE(1281)] = 55998, - [SMALL_STATE(1282)] = 56031, - [SMALL_STATE(1283)] = 56054, - [SMALL_STATE(1284)] = 56093, - [SMALL_STATE(1285)] = 56120, - [SMALL_STATE(1286)] = 56159, - [SMALL_STATE(1287)] = 56198, - [SMALL_STATE(1288)] = 56237, - [SMALL_STATE(1289)] = 56260, - [SMALL_STATE(1290)] = 56287, - [SMALL_STATE(1291)] = 56310, - [SMALL_STATE(1292)] = 56342, - [SMALL_STATE(1293)] = 56374, - [SMALL_STATE(1294)] = 56406, - [SMALL_STATE(1295)] = 56438, - [SMALL_STATE(1296)] = 56475, - [SMALL_STATE(1297)] = 56508, - [SMALL_STATE(1298)] = 56529, - [SMALL_STATE(1299)] = 56566, - [SMALL_STATE(1300)] = 56587, - [SMALL_STATE(1301)] = 56608, - [SMALL_STATE(1302)] = 56629, - [SMALL_STATE(1303)] = 56666, - [SMALL_STATE(1304)] = 56687, - [SMALL_STATE(1305)] = 56726, - [SMALL_STATE(1306)] = 56763, - [SMALL_STATE(1307)] = 56784, - [SMALL_STATE(1308)] = 56821, - [SMALL_STATE(1309)] = 56854, - [SMALL_STATE(1310)] = 56875, - [SMALL_STATE(1311)] = 56912, - [SMALL_STATE(1312)] = 56949, - [SMALL_STATE(1313)] = 56986, - [SMALL_STATE(1314)] = 57013, - [SMALL_STATE(1315)] = 57050, - [SMALL_STATE(1316)] = 57087, - [SMALL_STATE(1317)] = 57124, - [SMALL_STATE(1318)] = 57154, - [SMALL_STATE(1319)] = 57184, - [SMALL_STATE(1320)] = 57214, - [SMALL_STATE(1321)] = 57248, - [SMALL_STATE(1322)] = 57282, - [SMALL_STATE(1323)] = 57312, - [SMALL_STATE(1324)] = 57341, - [SMALL_STATE(1325)] = 57370, - [SMALL_STATE(1326)] = 57395, - [SMALL_STATE(1327)] = 57424, - [SMALL_STATE(1328)] = 57455, - [SMALL_STATE(1329)] = 57480, - [SMALL_STATE(1330)] = 57511, - [SMALL_STATE(1331)] = 57540, - [SMALL_STATE(1332)] = 57563, - [SMALL_STATE(1333)] = 57592, - [SMALL_STATE(1334)] = 57615, - [SMALL_STATE(1335)] = 57646, - [SMALL_STATE(1336)] = 57675, - [SMALL_STATE(1337)] = 57698, - [SMALL_STATE(1338)] = 57727, - [SMALL_STATE(1339)] = 57760, - [SMALL_STATE(1340)] = 57791, - [SMALL_STATE(1341)] = 57820, - [SMALL_STATE(1342)] = 57849, - [SMALL_STATE(1343)] = 57880, - [SMALL_STATE(1344)] = 57909, - [SMALL_STATE(1345)] = 57938, - [SMALL_STATE(1346)] = 57969, - [SMALL_STATE(1347)] = 58000, - [SMALL_STATE(1348)] = 58029, - [SMALL_STATE(1349)] = 58058, - [SMALL_STATE(1350)] = 58087, - [SMALL_STATE(1351)] = 58116, - [SMALL_STATE(1352)] = 58147, - [SMALL_STATE(1353)] = 58176, - [SMALL_STATE(1354)] = 58205, - [SMALL_STATE(1355)] = 58234, - [SMALL_STATE(1356)] = 58262, - [SMALL_STATE(1357)] = 58294, - [SMALL_STATE(1358)] = 58322, - [SMALL_STATE(1359)] = 58344, - [SMALL_STATE(1360)] = 58372, - [SMALL_STATE(1361)] = 58396, - [SMALL_STATE(1362)] = 58428, - [SMALL_STATE(1363)] = 58460, - [SMALL_STATE(1364)] = 58482, - [SMALL_STATE(1365)] = 58514, - [SMALL_STATE(1366)] = 58538, - [SMALL_STATE(1367)] = 58566, - [SMALL_STATE(1368)] = 58594, - [SMALL_STATE(1369)] = 58618, - [SMALL_STATE(1370)] = 58641, - [SMALL_STATE(1371)] = 58664, - [SMALL_STATE(1372)] = 58693, - [SMALL_STATE(1373)] = 58722, - [SMALL_STATE(1374)] = 58743, - [SMALL_STATE(1375)] = 58760, - [SMALL_STATE(1376)] = 58785, - [SMALL_STATE(1377)] = 58814, - [SMALL_STATE(1378)] = 58831, - [SMALL_STATE(1379)] = 58848, - [SMALL_STATE(1380)] = 58877, - [SMALL_STATE(1381)] = 58906, - [SMALL_STATE(1382)] = 58927, - [SMALL_STATE(1383)] = 58944, - [SMALL_STATE(1384)] = 58965, - [SMALL_STATE(1385)] = 58994, - [SMALL_STATE(1386)] = 59011, - [SMALL_STATE(1387)] = 59028, - [SMALL_STATE(1388)] = 59057, - [SMALL_STATE(1389)] = 59078, - [SMALL_STATE(1390)] = 59099, - [SMALL_STATE(1391)] = 59128, - [SMALL_STATE(1392)] = 59145, - [SMALL_STATE(1393)] = 59166, - [SMALL_STATE(1394)] = 59193, - [SMALL_STATE(1395)] = 59210, - [SMALL_STATE(1396)] = 59231, - [SMALL_STATE(1397)] = 59248, - [SMALL_STATE(1398)] = 59264, - [SMALL_STATE(1399)] = 59286, - [SMALL_STATE(1400)] = 59312, - [SMALL_STATE(1401)] = 59328, - [SMALL_STATE(1402)] = 59354, - [SMALL_STATE(1403)] = 59370, - [SMALL_STATE(1404)] = 59396, - [SMALL_STATE(1405)] = 59412, - [SMALL_STATE(1406)] = 59438, - [SMALL_STATE(1407)] = 59464, - [SMALL_STATE(1408)] = 59480, - [SMALL_STATE(1409)] = 59506, - [SMALL_STATE(1410)] = 59528, - [SMALL_STATE(1411)] = 59544, - [SMALL_STATE(1412)] = 59560, - [SMALL_STATE(1413)] = 59586, - [SMALL_STATE(1414)] = 59612, - [SMALL_STATE(1415)] = 59632, - [SMALL_STATE(1416)] = 59648, - [SMALL_STATE(1417)] = 59674, - [SMALL_STATE(1418)] = 59690, - [SMALL_STATE(1419)] = 59716, - [SMALL_STATE(1420)] = 59742, - [SMALL_STATE(1421)] = 59760, - [SMALL_STATE(1422)] = 59780, - [SMALL_STATE(1423)] = 59806, - [SMALL_STATE(1424)] = 59828, - [SMALL_STATE(1425)] = 59850, - [SMALL_STATE(1426)] = 59870, - [SMALL_STATE(1427)] = 59886, - [SMALL_STATE(1428)] = 59912, - [SMALL_STATE(1429)] = 59927, - [SMALL_STATE(1430)] = 59942, - [SMALL_STATE(1431)] = 59965, - [SMALL_STATE(1432)] = 59982, - [SMALL_STATE(1433)] = 59997, - [SMALL_STATE(1434)] = 60020, - [SMALL_STATE(1435)] = 60043, - [SMALL_STATE(1436)] = 60058, - [SMALL_STATE(1437)] = 60073, - [SMALL_STATE(1438)] = 60096, - [SMALL_STATE(1439)] = 60119, - [SMALL_STATE(1440)] = 60142, - [SMALL_STATE(1441)] = 60165, - [SMALL_STATE(1442)] = 60188, - [SMALL_STATE(1443)] = 60211, - [SMALL_STATE(1444)] = 60226, - [SMALL_STATE(1445)] = 60249, - [SMALL_STATE(1446)] = 60268, - [SMALL_STATE(1447)] = 60291, - [SMALL_STATE(1448)] = 60314, - [SMALL_STATE(1449)] = 60337, - [SMALL_STATE(1450)] = 60352, - [SMALL_STATE(1451)] = 60375, - [SMALL_STATE(1452)] = 60392, - [SMALL_STATE(1453)] = 60407, - [SMALL_STATE(1454)] = 60422, - [SMALL_STATE(1455)] = 60439, - [SMALL_STATE(1456)] = 60462, - [SMALL_STATE(1457)] = 60479, - [SMALL_STATE(1458)] = 60502, - [SMALL_STATE(1459)] = 60525, - [SMALL_STATE(1460)] = 60540, - [SMALL_STATE(1461)] = 60563, - [SMALL_STATE(1462)] = 60582, - [SMALL_STATE(1463)] = 60597, - [SMALL_STATE(1464)] = 60612, - [SMALL_STATE(1465)] = 60627, - [SMALL_STATE(1466)] = 60650, - [SMALL_STATE(1467)] = 60664, - [SMALL_STATE(1468)] = 60678, - [SMALL_STATE(1469)] = 60692, - [SMALL_STATE(1470)] = 60710, - [SMALL_STATE(1471)] = 60728, - [SMALL_STATE(1472)] = 60742, - [SMALL_STATE(1473)] = 60756, - [SMALL_STATE(1474)] = 60770, - [SMALL_STATE(1475)] = 60788, - [SMALL_STATE(1476)] = 60802, - [SMALL_STATE(1477)] = 60816, - [SMALL_STATE(1478)] = 60834, - [SMALL_STATE(1479)] = 60852, - [SMALL_STATE(1480)] = 60866, - [SMALL_STATE(1481)] = 60880, - [SMALL_STATE(1482)] = 60898, - [SMALL_STATE(1483)] = 60912, - [SMALL_STATE(1484)] = 60930, - [SMALL_STATE(1485)] = 60948, - [SMALL_STATE(1486)] = 60962, - [SMALL_STATE(1487)] = 60976, - [SMALL_STATE(1488)] = 60996, - [SMALL_STATE(1489)] = 61010, - [SMALL_STATE(1490)] = 61028, - [SMALL_STATE(1491)] = 61042, - [SMALL_STATE(1492)] = 61059, - [SMALL_STATE(1493)] = 61076, - [SMALL_STATE(1494)] = 61093, - [SMALL_STATE(1495)] = 61112, - [SMALL_STATE(1496)] = 61129, - [SMALL_STATE(1497)] = 61146, - [SMALL_STATE(1498)] = 61163, - [SMALL_STATE(1499)] = 61180, - [SMALL_STATE(1500)] = 61191, - [SMALL_STATE(1501)] = 61208, - [SMALL_STATE(1502)] = 61225, - [SMALL_STATE(1503)] = 61242, - [SMALL_STATE(1504)] = 61259, - [SMALL_STATE(1505)] = 61276, - [SMALL_STATE(1506)] = 61293, - [SMALL_STATE(1507)] = 61312, - [SMALL_STATE(1508)] = 61329, - [SMALL_STATE(1509)] = 61346, - [SMALL_STATE(1510)] = 61363, - [SMALL_STATE(1511)] = 61380, - [SMALL_STATE(1512)] = 61393, - [SMALL_STATE(1513)] = 61410, - [SMALL_STATE(1514)] = 61427, - [SMALL_STATE(1515)] = 61444, - [SMALL_STATE(1516)] = 61461, - [SMALL_STATE(1517)] = 61480, - [SMALL_STATE(1518)] = 61497, - [SMALL_STATE(1519)] = 61514, - [SMALL_STATE(1520)] = 61528, - [SMALL_STATE(1521)] = 61544, - [SMALL_STATE(1522)] = 61560, - [SMALL_STATE(1523)] = 61574, - [SMALL_STATE(1524)] = 61588, - [SMALL_STATE(1525)] = 61604, - [SMALL_STATE(1526)] = 61620, - [SMALL_STATE(1527)] = 61634, - [SMALL_STATE(1528)] = 61650, - [SMALL_STATE(1529)] = 61666, - [SMALL_STATE(1530)] = 61680, - [SMALL_STATE(1531)] = 61694, - [SMALL_STATE(1532)] = 61710, - [SMALL_STATE(1533)] = 61726, - [SMALL_STATE(1534)] = 61740, - [SMALL_STATE(1535)] = 61756, - [SMALL_STATE(1536)] = 61768, - [SMALL_STATE(1537)] = 61784, - [SMALL_STATE(1538)] = 61800, - [SMALL_STATE(1539)] = 61816, - [SMALL_STATE(1540)] = 61830, - [SMALL_STATE(1541)] = 61844, - [SMALL_STATE(1542)] = 61858, - [SMALL_STATE(1543)] = 61872, - [SMALL_STATE(1544)] = 61886, - [SMALL_STATE(1545)] = 61902, - [SMALL_STATE(1546)] = 61916, - [SMALL_STATE(1547)] = 61932, - [SMALL_STATE(1548)] = 61948, - [SMALL_STATE(1549)] = 61962, - [SMALL_STATE(1550)] = 61976, - [SMALL_STATE(1551)] = 61990, - [SMALL_STATE(1552)] = 62006, - [SMALL_STATE(1553)] = 62020, - [SMALL_STATE(1554)] = 62034, - [SMALL_STATE(1555)] = 62050, - [SMALL_STATE(1556)] = 62064, - [SMALL_STATE(1557)] = 62078, - [SMALL_STATE(1558)] = 62094, - [SMALL_STATE(1559)] = 62110, - [SMALL_STATE(1560)] = 62126, - [SMALL_STATE(1561)] = 62142, - [SMALL_STATE(1562)] = 62158, - [SMALL_STATE(1563)] = 62172, - [SMALL_STATE(1564)] = 62185, - [SMALL_STATE(1565)] = 62198, - [SMALL_STATE(1566)] = 62207, - [SMALL_STATE(1567)] = 62216, - [SMALL_STATE(1568)] = 62229, - [SMALL_STATE(1569)] = 62242, - [SMALL_STATE(1570)] = 62255, - [SMALL_STATE(1571)] = 62268, - [SMALL_STATE(1572)] = 62281, - [SMALL_STATE(1573)] = 62294, - [SMALL_STATE(1574)] = 62307, - [SMALL_STATE(1575)] = 62320, - [SMALL_STATE(1576)] = 62333, - [SMALL_STATE(1577)] = 62346, - [SMALL_STATE(1578)] = 62359, - [SMALL_STATE(1579)] = 62372, - [SMALL_STATE(1580)] = 62385, - [SMALL_STATE(1581)] = 62398, - [SMALL_STATE(1582)] = 62411, - [SMALL_STATE(1583)] = 62424, - [SMALL_STATE(1584)] = 62437, - [SMALL_STATE(1585)] = 62446, - [SMALL_STATE(1586)] = 62459, - [SMALL_STATE(1587)] = 62472, - [SMALL_STATE(1588)] = 62485, - [SMALL_STATE(1589)] = 62494, - [SMALL_STATE(1590)] = 62507, - [SMALL_STATE(1591)] = 62520, - [SMALL_STATE(1592)] = 62533, - [SMALL_STATE(1593)] = 62546, - [SMALL_STATE(1594)] = 62559, - [SMALL_STATE(1595)] = 62572, - [SMALL_STATE(1596)] = 62585, - [SMALL_STATE(1597)] = 62598, - [SMALL_STATE(1598)] = 62611, - [SMALL_STATE(1599)] = 62624, - [SMALL_STATE(1600)] = 62637, - [SMALL_STATE(1601)] = 62650, - [SMALL_STATE(1602)] = 62663, - [SMALL_STATE(1603)] = 62676, - [SMALL_STATE(1604)] = 62689, - [SMALL_STATE(1605)] = 62702, - [SMALL_STATE(1606)] = 62715, - [SMALL_STATE(1607)] = 62728, - [SMALL_STATE(1608)] = 62741, - [SMALL_STATE(1609)] = 62754, - [SMALL_STATE(1610)] = 62767, - [SMALL_STATE(1611)] = 62776, - [SMALL_STATE(1612)] = 62789, - [SMALL_STATE(1613)] = 62798, - [SMALL_STATE(1614)] = 62811, - [SMALL_STATE(1615)] = 62824, - [SMALL_STATE(1616)] = 62837, - [SMALL_STATE(1617)] = 62850, - [SMALL_STATE(1618)] = 62863, - [SMALL_STATE(1619)] = 62874, - [SMALL_STATE(1620)] = 62887, - [SMALL_STATE(1621)] = 62900, - [SMALL_STATE(1622)] = 62913, - [SMALL_STATE(1623)] = 62922, - [SMALL_STATE(1624)] = 62935, - [SMALL_STATE(1625)] = 62948, - [SMALL_STATE(1626)] = 62961, - [SMALL_STATE(1627)] = 62974, - [SMALL_STATE(1628)] = 62987, - [SMALL_STATE(1629)] = 63000, - [SMALL_STATE(1630)] = 63013, - [SMALL_STATE(1631)] = 63026, - [SMALL_STATE(1632)] = 63039, - [SMALL_STATE(1633)] = 63052, - [SMALL_STATE(1634)] = 63065, - [SMALL_STATE(1635)] = 63078, - [SMALL_STATE(1636)] = 63091, - [SMALL_STATE(1637)] = 63104, - [SMALL_STATE(1638)] = 63117, - [SMALL_STATE(1639)] = 63130, - [SMALL_STATE(1640)] = 63143, - [SMALL_STATE(1641)] = 63154, - [SMALL_STATE(1642)] = 63165, - [SMALL_STATE(1643)] = 63174, - [SMALL_STATE(1644)] = 63187, - [SMALL_STATE(1645)] = 63200, - [SMALL_STATE(1646)] = 63213, - [SMALL_STATE(1647)] = 63226, - [SMALL_STATE(1648)] = 63239, - [SMALL_STATE(1649)] = 63252, - [SMALL_STATE(1650)] = 63263, - [SMALL_STATE(1651)] = 63276, - [SMALL_STATE(1652)] = 63289, - [SMALL_STATE(1653)] = 63302, - [SMALL_STATE(1654)] = 63315, - [SMALL_STATE(1655)] = 63328, - [SMALL_STATE(1656)] = 63341, - [SMALL_STATE(1657)] = 63350, - [SMALL_STATE(1658)] = 63359, - [SMALL_STATE(1659)] = 63372, - [SMALL_STATE(1660)] = 63383, - [SMALL_STATE(1661)] = 63396, - [SMALL_STATE(1662)] = 63409, - [SMALL_STATE(1663)] = 63422, - [SMALL_STATE(1664)] = 63435, - [SMALL_STATE(1665)] = 63448, - [SMALL_STATE(1666)] = 63461, - [SMALL_STATE(1667)] = 63474, - [SMALL_STATE(1668)] = 63487, - [SMALL_STATE(1669)] = 63500, - [SMALL_STATE(1670)] = 63513, - [SMALL_STATE(1671)] = 63526, - [SMALL_STATE(1672)] = 63535, - [SMALL_STATE(1673)] = 63548, - [SMALL_STATE(1674)] = 63561, - [SMALL_STATE(1675)] = 63574, - [SMALL_STATE(1676)] = 63587, - [SMALL_STATE(1677)] = 63600, - [SMALL_STATE(1678)] = 63613, - [SMALL_STATE(1679)] = 63626, - [SMALL_STATE(1680)] = 63636, - [SMALL_STATE(1681)] = 63646, - [SMALL_STATE(1682)] = 63656, - [SMALL_STATE(1683)] = 63666, - [SMALL_STATE(1684)] = 63674, - [SMALL_STATE(1685)] = 63684, - [SMALL_STATE(1686)] = 63694, - [SMALL_STATE(1687)] = 63702, - [SMALL_STATE(1688)] = 63712, - [SMALL_STATE(1689)] = 63720, - [SMALL_STATE(1690)] = 63730, - [SMALL_STATE(1691)] = 63740, - [SMALL_STATE(1692)] = 63750, - [SMALL_STATE(1693)] = 63760, - [SMALL_STATE(1694)] = 63770, - [SMALL_STATE(1695)] = 63778, - [SMALL_STATE(1696)] = 63786, - [SMALL_STATE(1697)] = 63796, - [SMALL_STATE(1698)] = 63806, - [SMALL_STATE(1699)] = 63816, - [SMALL_STATE(1700)] = 63824, - [SMALL_STATE(1701)] = 63834, - [SMALL_STATE(1702)] = 63842, - [SMALL_STATE(1703)] = 63852, - [SMALL_STATE(1704)] = 63862, - [SMALL_STATE(1705)] = 63872, - [SMALL_STATE(1706)] = 63882, - [SMALL_STATE(1707)] = 63892, - [SMALL_STATE(1708)] = 63900, - [SMALL_STATE(1709)] = 63910, - [SMALL_STATE(1710)] = 63920, - [SMALL_STATE(1711)] = 63930, - [SMALL_STATE(1712)] = 63940, - [SMALL_STATE(1713)] = 63948, - [SMALL_STATE(1714)] = 63958, - [SMALL_STATE(1715)] = 63968, - [SMALL_STATE(1716)] = 63978, - [SMALL_STATE(1717)] = 63988, - [SMALL_STATE(1718)] = 63998, - [SMALL_STATE(1719)] = 64008, - [SMALL_STATE(1720)] = 64018, - [SMALL_STATE(1721)] = 64028, - [SMALL_STATE(1722)] = 64038, - [SMALL_STATE(1723)] = 64048, - [SMALL_STATE(1724)] = 64058, - [SMALL_STATE(1725)] = 64068, - [SMALL_STATE(1726)] = 64078, - [SMALL_STATE(1727)] = 64088, - [SMALL_STATE(1728)] = 64098, - [SMALL_STATE(1729)] = 64108, - [SMALL_STATE(1730)] = 64118, - [SMALL_STATE(1731)] = 64128, - [SMALL_STATE(1732)] = 64138, - [SMALL_STATE(1733)] = 64146, - [SMALL_STATE(1734)] = 64156, - [SMALL_STATE(1735)] = 64166, - [SMALL_STATE(1736)] = 64174, - [SMALL_STATE(1737)] = 64184, - [SMALL_STATE(1738)] = 64194, - [SMALL_STATE(1739)] = 64204, - [SMALL_STATE(1740)] = 64214, - [SMALL_STATE(1741)] = 64224, - [SMALL_STATE(1742)] = 64234, - [SMALL_STATE(1743)] = 64244, - [SMALL_STATE(1744)] = 64254, - [SMALL_STATE(1745)] = 64262, - [SMALL_STATE(1746)] = 64272, - [SMALL_STATE(1747)] = 64282, - [SMALL_STATE(1748)] = 64292, - [SMALL_STATE(1749)] = 64300, - [SMALL_STATE(1750)] = 64310, - [SMALL_STATE(1751)] = 64320, - [SMALL_STATE(1752)] = 64330, - [SMALL_STATE(1753)] = 64340, - [SMALL_STATE(1754)] = 64350, - [SMALL_STATE(1755)] = 64358, - [SMALL_STATE(1756)] = 64368, - [SMALL_STATE(1757)] = 64378, - [SMALL_STATE(1758)] = 64388, - [SMALL_STATE(1759)] = 64396, - [SMALL_STATE(1760)] = 64404, - [SMALL_STATE(1761)] = 64414, - [SMALL_STATE(1762)] = 64424, - [SMALL_STATE(1763)] = 64434, - [SMALL_STATE(1764)] = 64444, - [SMALL_STATE(1765)] = 64452, - [SMALL_STATE(1766)] = 64460, - [SMALL_STATE(1767)] = 64470, - [SMALL_STATE(1768)] = 64477, - [SMALL_STATE(1769)] = 64484, - [SMALL_STATE(1770)] = 64491, - [SMALL_STATE(1771)] = 64498, - [SMALL_STATE(1772)] = 64505, - [SMALL_STATE(1773)] = 64512, - [SMALL_STATE(1774)] = 64519, - [SMALL_STATE(1775)] = 64526, - [SMALL_STATE(1776)] = 64533, - [SMALL_STATE(1777)] = 64540, - [SMALL_STATE(1778)] = 64547, - [SMALL_STATE(1779)] = 64554, - [SMALL_STATE(1780)] = 64561, - [SMALL_STATE(1781)] = 64568, - [SMALL_STATE(1782)] = 64575, - [SMALL_STATE(1783)] = 64582, - [SMALL_STATE(1784)] = 64589, - [SMALL_STATE(1785)] = 64596, - [SMALL_STATE(1786)] = 64603, - [SMALL_STATE(1787)] = 64610, - [SMALL_STATE(1788)] = 64617, - [SMALL_STATE(1789)] = 64624, - [SMALL_STATE(1790)] = 64631, - [SMALL_STATE(1791)] = 64638, - [SMALL_STATE(1792)] = 64645, - [SMALL_STATE(1793)] = 64652, - [SMALL_STATE(1794)] = 64659, - [SMALL_STATE(1795)] = 64666, - [SMALL_STATE(1796)] = 64673, - [SMALL_STATE(1797)] = 64680, - [SMALL_STATE(1798)] = 64687, - [SMALL_STATE(1799)] = 64694, - [SMALL_STATE(1800)] = 64701, - [SMALL_STATE(1801)] = 64708, - [SMALL_STATE(1802)] = 64715, - [SMALL_STATE(1803)] = 64722, - [SMALL_STATE(1804)] = 64729, - [SMALL_STATE(1805)] = 64736, - [SMALL_STATE(1806)] = 64743, - [SMALL_STATE(1807)] = 64750, - [SMALL_STATE(1808)] = 64757, - [SMALL_STATE(1809)] = 64764, - [SMALL_STATE(1810)] = 64771, - [SMALL_STATE(1811)] = 64778, - [SMALL_STATE(1812)] = 64785, - [SMALL_STATE(1813)] = 64792, - [SMALL_STATE(1814)] = 64799, - [SMALL_STATE(1815)] = 64806, - [SMALL_STATE(1816)] = 64813, - [SMALL_STATE(1817)] = 64820, - [SMALL_STATE(1818)] = 64827, - [SMALL_STATE(1819)] = 64834, - [SMALL_STATE(1820)] = 64841, - [SMALL_STATE(1821)] = 64848, - [SMALL_STATE(1822)] = 64855, - [SMALL_STATE(1823)] = 64862, - [SMALL_STATE(1824)] = 64869, - [SMALL_STATE(1825)] = 64876, - [SMALL_STATE(1826)] = 64883, - [SMALL_STATE(1827)] = 64890, - [SMALL_STATE(1828)] = 64897, - [SMALL_STATE(1829)] = 64904, - [SMALL_STATE(1830)] = 64911, - [SMALL_STATE(1831)] = 64918, - [SMALL_STATE(1832)] = 64925, - [SMALL_STATE(1833)] = 64932, - [SMALL_STATE(1834)] = 64939, - [SMALL_STATE(1835)] = 64946, - [SMALL_STATE(1836)] = 64953, - [SMALL_STATE(1837)] = 64960, - [SMALL_STATE(1838)] = 64967, - [SMALL_STATE(1839)] = 64974, - [SMALL_STATE(1840)] = 64981, - [SMALL_STATE(1841)] = 64988, - [SMALL_STATE(1842)] = 64995, - [SMALL_STATE(1843)] = 65002, - [SMALL_STATE(1844)] = 65009, - [SMALL_STATE(1845)] = 65016, - [SMALL_STATE(1846)] = 65023, - [SMALL_STATE(1847)] = 65030, - [SMALL_STATE(1848)] = 65037, - [SMALL_STATE(1849)] = 65044, - [SMALL_STATE(1850)] = 65051, - [SMALL_STATE(1851)] = 65058, - [SMALL_STATE(1852)] = 65065, - [SMALL_STATE(1853)] = 65072, - [SMALL_STATE(1854)] = 65079, - [SMALL_STATE(1855)] = 65086, - [SMALL_STATE(1856)] = 65093, - [SMALL_STATE(1857)] = 65100, - [SMALL_STATE(1858)] = 65107, - [SMALL_STATE(1859)] = 65114, - [SMALL_STATE(1860)] = 65121, - [SMALL_STATE(1861)] = 65128, - [SMALL_STATE(1862)] = 65135, - [SMALL_STATE(1863)] = 65142, - [SMALL_STATE(1864)] = 65149, - [SMALL_STATE(1865)] = 65156, - [SMALL_STATE(1866)] = 65163, - [SMALL_STATE(1867)] = 65170, - [SMALL_STATE(1868)] = 65177, - [SMALL_STATE(1869)] = 65184, - [SMALL_STATE(1870)] = 65191, - [SMALL_STATE(1871)] = 65198, - [SMALL_STATE(1872)] = 65205, - [SMALL_STATE(1873)] = 65212, - [SMALL_STATE(1874)] = 65219, - [SMALL_STATE(1875)] = 65226, - [SMALL_STATE(1876)] = 65233, - [SMALL_STATE(1877)] = 65240, - [SMALL_STATE(1878)] = 65247, - [SMALL_STATE(1879)] = 65254, - [SMALL_STATE(1880)] = 65261, - [SMALL_STATE(1881)] = 65268, - [SMALL_STATE(1882)] = 65275, - [SMALL_STATE(1883)] = 65282, - [SMALL_STATE(1884)] = 65289, - [SMALL_STATE(1885)] = 65296, - [SMALL_STATE(1886)] = 65303, - [SMALL_STATE(1887)] = 65310, - [SMALL_STATE(1888)] = 65317, - [SMALL_STATE(1889)] = 65324, - [SMALL_STATE(1890)] = 65331, - [SMALL_STATE(1891)] = 65338, - [SMALL_STATE(1892)] = 65345, - [SMALL_STATE(1893)] = 65352, - [SMALL_STATE(1894)] = 65359, - [SMALL_STATE(1895)] = 65366, - [SMALL_STATE(1896)] = 65373, - [SMALL_STATE(1897)] = 65380, - [SMALL_STATE(1898)] = 65387, - [SMALL_STATE(1899)] = 65394, - [SMALL_STATE(1900)] = 65401, - [SMALL_STATE(1901)] = 65408, - [SMALL_STATE(1902)] = 65415, - [SMALL_STATE(1903)] = 65422, - [SMALL_STATE(1904)] = 65429, - [SMALL_STATE(1905)] = 65436, - [SMALL_STATE(1906)] = 65443, - [SMALL_STATE(1907)] = 65450, - [SMALL_STATE(1908)] = 65457, - [SMALL_STATE(1909)] = 65464, - [SMALL_STATE(1910)] = 65471, - [SMALL_STATE(1911)] = 65478, - [SMALL_STATE(1912)] = 65485, - [SMALL_STATE(1913)] = 65492, - [SMALL_STATE(1914)] = 65499, - [SMALL_STATE(1915)] = 65506, - [SMALL_STATE(1916)] = 65513, - [SMALL_STATE(1917)] = 65520, - [SMALL_STATE(1918)] = 65527, - [SMALL_STATE(1919)] = 65534, - [SMALL_STATE(1920)] = 65541, - [SMALL_STATE(1921)] = 65548, - [SMALL_STATE(1922)] = 65555, - [SMALL_STATE(1923)] = 65562, - [SMALL_STATE(1924)] = 65569, - [SMALL_STATE(1925)] = 65576, - [SMALL_STATE(1926)] = 65583, - [SMALL_STATE(1927)] = 65590, - [SMALL_STATE(1928)] = 65597, - [SMALL_STATE(1929)] = 65604, - [SMALL_STATE(1930)] = 65611, - [SMALL_STATE(1931)] = 65618, - [SMALL_STATE(1932)] = 65625, - [SMALL_STATE(1933)] = 65632, - [SMALL_STATE(1934)] = 65639, - [SMALL_STATE(1935)] = 65646, - [SMALL_STATE(1936)] = 65653, - [SMALL_STATE(1937)] = 65660, - [SMALL_STATE(1938)] = 65667, - [SMALL_STATE(1939)] = 65674, - [SMALL_STATE(1940)] = 65681, - [SMALL_STATE(1941)] = 65688, - [SMALL_STATE(1942)] = 65695, - [SMALL_STATE(1943)] = 65702, - [SMALL_STATE(1944)] = 65709, - [SMALL_STATE(1945)] = 65716, - [SMALL_STATE(1946)] = 65723, - [SMALL_STATE(1947)] = 65730, - [SMALL_STATE(1948)] = 65737, - [SMALL_STATE(1949)] = 65744, - [SMALL_STATE(1950)] = 65751, - [SMALL_STATE(1951)] = 65758, - [SMALL_STATE(1952)] = 65765, - [SMALL_STATE(1953)] = 65772, - [SMALL_STATE(1954)] = 65779, - [SMALL_STATE(1955)] = 65786, - [SMALL_STATE(1956)] = 65793, - [SMALL_STATE(1957)] = 65800, - [SMALL_STATE(1958)] = 65807, - [SMALL_STATE(1959)] = 65814, - [SMALL_STATE(1960)] = 65821, - [SMALL_STATE(1961)] = 65828, - [SMALL_STATE(1962)] = 65835, - [SMALL_STATE(1963)] = 65842, - [SMALL_STATE(1964)] = 65849, - [SMALL_STATE(1965)] = 65856, - [SMALL_STATE(1966)] = 65863, - [SMALL_STATE(1967)] = 65870, - [SMALL_STATE(1968)] = 65877, - [SMALL_STATE(1969)] = 65884, - [SMALL_STATE(1970)] = 65891, - [SMALL_STATE(1971)] = 65898, - [SMALL_STATE(1972)] = 65905, - [SMALL_STATE(1973)] = 65912, - [SMALL_STATE(1974)] = 65919, - [SMALL_STATE(1975)] = 65926, - [SMALL_STATE(1976)] = 65933, - [SMALL_STATE(1977)] = 65940, - [SMALL_STATE(1978)] = 65947, - [SMALL_STATE(1979)] = 65954, - [SMALL_STATE(1980)] = 65961, - [SMALL_STATE(1981)] = 65968, - [SMALL_STATE(1982)] = 65975, - [SMALL_STATE(1983)] = 65982, - [SMALL_STATE(1984)] = 65989, - [SMALL_STATE(1985)] = 65996, - [SMALL_STATE(1986)] = 66003, - [SMALL_STATE(1987)] = 66010, - [SMALL_STATE(1988)] = 66017, - [SMALL_STATE(1989)] = 66024, - [SMALL_STATE(1990)] = 66031, - [SMALL_STATE(1991)] = 66038, - [SMALL_STATE(1992)] = 66045, - [SMALL_STATE(1993)] = 66052, - [SMALL_STATE(1994)] = 66059, - [SMALL_STATE(1995)] = 66066, - [SMALL_STATE(1996)] = 66073, - [SMALL_STATE(1997)] = 66080, - [SMALL_STATE(1998)] = 66087, - [SMALL_STATE(1999)] = 66094, - [SMALL_STATE(2000)] = 66101, - [SMALL_STATE(2001)] = 66108, - [SMALL_STATE(2002)] = 66115, - [SMALL_STATE(2003)] = 66122, - [SMALL_STATE(2004)] = 66129, - [SMALL_STATE(2005)] = 66136, - [SMALL_STATE(2006)] = 66143, - [SMALL_STATE(2007)] = 66150, - [SMALL_STATE(2008)] = 66157, - [SMALL_STATE(2009)] = 66164, - [SMALL_STATE(2010)] = 66171, - [SMALL_STATE(2011)] = 66178, - [SMALL_STATE(2012)] = 66185, - [SMALL_STATE(2013)] = 66192, - [SMALL_STATE(2014)] = 66199, + [SMALL_STATE(633)] = 0, + [SMALL_STATE(634)] = 91, + [SMALL_STATE(635)] = 209, + [SMALL_STATE(636)] = 325, + [SMALL_STATE(637)] = 397, + [SMALL_STATE(638)] = 469, + [SMALL_STATE(639)] = 579, + [SMALL_STATE(640)] = 651, + [SMALL_STATE(641)] = 761, + [SMALL_STATE(642)] = 871, + [SMALL_STATE(643)] = 981, + [SMALL_STATE(644)] = 1091, + [SMALL_STATE(645)] = 1201, + [SMALL_STATE(646)] = 1311, + [SMALL_STATE(647)] = 1421, + [SMALL_STATE(648)] = 1502, + [SMALL_STATE(649)] = 1577, + [SMALL_STATE(650)] = 1642, + [SMALL_STATE(651)] = 1711, + [SMALL_STATE(652)] = 1776, + [SMALL_STATE(653)] = 1885, + [SMALL_STATE(654)] = 1992, + [SMALL_STATE(655)] = 2099, + [SMALL_STATE(656)] = 2164, + [SMALL_STATE(657)] = 2228, + [SMALL_STATE(658)] = 2332, + [SMALL_STATE(659)] = 2436, + [SMALL_STATE(660)] = 2500, + [SMALL_STATE(661)] = 2564, + [SMALL_STATE(662)] = 2628, + [SMALL_STATE(663)] = 2732, + [SMALL_STATE(664)] = 2836, + [SMALL_STATE(665)] = 2900, + [SMALL_STATE(666)] = 2964, + [SMALL_STATE(667)] = 3068, + [SMALL_STATE(668)] = 3132, + [SMALL_STATE(669)] = 3196, + [SMALL_STATE(670)] = 3300, + [SMALL_STATE(671)] = 3364, + [SMALL_STATE(672)] = 3428, + [SMALL_STATE(673)] = 3492, + [SMALL_STATE(674)] = 3556, + [SMALL_STATE(675)] = 3660, + [SMALL_STATE(676)] = 3764, + [SMALL_STATE(677)] = 3827, + [SMALL_STATE(678)] = 3927, + [SMALL_STATE(679)] = 4027, + [SMALL_STATE(680)] = 4127, + [SMALL_STATE(681)] = 4227, + [SMALL_STATE(682)] = 4327, + [SMALL_STATE(683)] = 4389, + [SMALL_STATE(684)] = 4489, + [SMALL_STATE(685)] = 4551, + [SMALL_STATE(686)] = 4651, + [SMALL_STATE(687)] = 4751, + [SMALL_STATE(688)] = 4820, + [SMALL_STATE(689)] = 4917, + [SMALL_STATE(690)] = 4983, + [SMALL_STATE(691)] = 5043, + [SMALL_STATE(692)] = 5102, + [SMALL_STATE(693)] = 5161, + [SMALL_STATE(694)] = 5220, + [SMALL_STATE(695)] = 5279, + [SMALL_STATE(696)] = 5338, + [SMALL_STATE(697)] = 5397, + [SMALL_STATE(698)] = 5456, + [SMALL_STATE(699)] = 5515, + [SMALL_STATE(700)] = 5574, + [SMALL_STATE(701)] = 5653, + [SMALL_STATE(702)] = 5712, + [SMALL_STATE(703)] = 5771, + [SMALL_STATE(704)] = 5830, + [SMALL_STATE(705)] = 5889, + [SMALL_STATE(706)] = 5948, + [SMALL_STATE(707)] = 6027, + [SMALL_STATE(708)] = 6086, + [SMALL_STATE(709)] = 6145, + [SMALL_STATE(710)] = 6204, + [SMALL_STATE(711)] = 6263, + [SMALL_STATE(712)] = 6322, + [SMALL_STATE(713)] = 6381, + [SMALL_STATE(714)] = 6440, + [SMALL_STATE(715)] = 6506, + [SMALL_STATE(716)] = 6564, + [SMALL_STATE(717)] = 6630, + [SMALL_STATE(718)] = 6696, + [SMALL_STATE(719)] = 6764, + [SMALL_STATE(720)] = 6822, + [SMALL_STATE(721)] = 6890, + [SMALL_STATE(722)] = 6948, + [SMALL_STATE(723)] = 7016, + [SMALL_STATE(724)] = 7082, + [SMALL_STATE(725)] = 7140, + [SMALL_STATE(726)] = 7198, + [SMALL_STATE(727)] = 7264, + [SMALL_STATE(728)] = 7332, + [SMALL_STATE(729)] = 7400, + [SMALL_STATE(730)] = 7458, + [SMALL_STATE(731)] = 7524, + [SMALL_STATE(732)] = 7581, + [SMALL_STATE(733)] = 7646, + [SMALL_STATE(734)] = 7709, + [SMALL_STATE(735)] = 7766, + [SMALL_STATE(736)] = 7831, + [SMALL_STATE(737)] = 7892, + [SMALL_STATE(738)] = 7949, + [SMALL_STATE(739)] = 8009, + [SMALL_STATE(740)] = 8081, + [SMALL_STATE(741)] = 8141, + [SMALL_STATE(742)] = 8201, + [SMALL_STATE(743)] = 8261, + [SMALL_STATE(744)] = 8321, + [SMALL_STATE(745)] = 8377, + [SMALL_STATE(746)] = 8437, + [SMALL_STATE(747)] = 8497, + [SMALL_STATE(748)] = 8557, + [SMALL_STATE(749)] = 8617, + [SMALL_STATE(750)] = 8689, + [SMALL_STATE(751)] = 8749, + [SMALL_STATE(752)] = 8821, + [SMALL_STATE(753)] = 8877, + [SMALL_STATE(754)] = 8937, + [SMALL_STATE(755)] = 9009, + [SMALL_STATE(756)] = 9064, + [SMALL_STATE(757)] = 9119, + [SMALL_STATE(758)] = 9174, + [SMALL_STATE(759)] = 9229, + [SMALL_STATE(760)] = 9284, + [SMALL_STATE(761)] = 9339, + [SMALL_STATE(762)] = 9394, + [SMALL_STATE(763)] = 9449, + [SMALL_STATE(764)] = 9504, + [SMALL_STATE(765)] = 9559, + [SMALL_STATE(766)] = 9614, + [SMALL_STATE(767)] = 9669, + [SMALL_STATE(768)] = 9724, + [SMALL_STATE(769)] = 9779, + [SMALL_STATE(770)] = 9834, + [SMALL_STATE(771)] = 9889, + [SMALL_STATE(772)] = 9944, + [SMALL_STATE(773)] = 9999, + [SMALL_STATE(774)] = 10054, + [SMALL_STATE(775)] = 10109, + [SMALL_STATE(776)] = 10164, + [SMALL_STATE(777)] = 10219, + [SMALL_STATE(778)] = 10274, + [SMALL_STATE(779)] = 10329, + [SMALL_STATE(780)] = 10384, + [SMALL_STATE(781)] = 10439, + [SMALL_STATE(782)] = 10494, + [SMALL_STATE(783)] = 10549, + [SMALL_STATE(784)] = 10610, + [SMALL_STATE(785)] = 10665, + [SMALL_STATE(786)] = 10723, + [SMALL_STATE(787)] = 10777, + [SMALL_STATE(788)] = 10831, + [SMALL_STATE(789)] = 10885, + [SMALL_STATE(790)] = 10939, + [SMALL_STATE(791)] = 10993, + [SMALL_STATE(792)] = 11047, + [SMALL_STATE(793)] = 11101, + [SMALL_STATE(794)] = 11155, + [SMALL_STATE(795)] = 11209, + [SMALL_STATE(796)] = 11263, + [SMALL_STATE(797)] = 11317, + [SMALL_STATE(798)] = 11371, + [SMALL_STATE(799)] = 11425, + [SMALL_STATE(800)] = 11479, + [SMALL_STATE(801)] = 11533, + [SMALL_STATE(802)] = 11587, + [SMALL_STATE(803)] = 11641, + [SMALL_STATE(804)] = 11699, + [SMALL_STATE(805)] = 11757, + [SMALL_STATE(806)] = 11815, + [SMALL_STATE(807)] = 11869, + [SMALL_STATE(808)] = 11927, + [SMALL_STATE(809)] = 11985, + [SMALL_STATE(810)] = 12043, + [SMALL_STATE(811)] = 12103, + [SMALL_STATE(812)] = 12161, + [SMALL_STATE(813)] = 12219, + [SMALL_STATE(814)] = 12277, + [SMALL_STATE(815)] = 12335, + [SMALL_STATE(816)] = 12393, + [SMALL_STATE(817)] = 12456, + [SMALL_STATE(818)] = 12519, + [SMALL_STATE(819)] = 12590, + [SMALL_STATE(820)] = 12653, + [SMALL_STATE(821)] = 12744, + [SMALL_STATE(822)] = 12815, + [SMALL_STATE(823)] = 12878, + [SMALL_STATE(824)] = 12937, + [SMALL_STATE(825)] = 12996, + [SMALL_STATE(826)] = 13059, + [SMALL_STATE(827)] = 13130, + [SMALL_STATE(828)] = 13193, + [SMALL_STATE(829)] = 13264, + [SMALL_STATE(830)] = 13355, + [SMALL_STATE(831)] = 13415, + [SMALL_STATE(832)] = 13497, + [SMALL_STATE(833)] = 13583, + [SMALL_STATE(834)] = 13647, + [SMALL_STATE(835)] = 13729, + [SMALL_STATE(836)] = 13809, + [SMALL_STATE(837)] = 13887, + [SMALL_STATE(838)] = 13963, + [SMALL_STATE(839)] = 14037, + [SMALL_STATE(840)] = 14109, + [SMALL_STATE(841)] = 14177, + [SMALL_STATE(842)] = 14243, + [SMALL_STATE(843)] = 14329, + [SMALL_STATE(844)] = 14415, + [SMALL_STATE(845)] = 14495, + [SMALL_STATE(846)] = 14569, + [SMALL_STATE(847)] = 14653, + [SMALL_STATE(848)] = 14729, + [SMALL_STATE(849)] = 14807, + [SMALL_STATE(850)] = 14871, + [SMALL_STATE(851)] = 14939, + [SMALL_STATE(852)] = 15025, + [SMALL_STATE(853)] = 15111, + [SMALL_STATE(854)] = 15183, + [SMALL_STATE(855)] = 15269, + [SMALL_STATE(856)] = 15335, + [SMALL_STATE(857)] = 15419, + [SMALL_STATE(858)] = 15481, + [SMALL_STATE(859)] = 15532, + [SMALL_STATE(860)] = 15587, + [SMALL_STATE(861)] = 15642, + [SMALL_STATE(862)] = 15693, + [SMALL_STATE(863)] = 15752, + [SMALL_STATE(864)] = 15802, + [SMALL_STATE(865)] = 15856, + [SMALL_STATE(866)] = 15906, + [SMALL_STATE(867)] = 15956, + [SMALL_STATE(868)] = 16006, + [SMALL_STATE(869)] = 16056, + [SMALL_STATE(870)] = 16106, + [SMALL_STATE(871)] = 16156, + [SMALL_STATE(872)] = 16206, + [SMALL_STATE(873)] = 16256, + [SMALL_STATE(874)] = 16306, + [SMALL_STATE(875)] = 16356, + [SMALL_STATE(876)] = 16406, + [SMALL_STATE(877)] = 16456, + [SMALL_STATE(878)] = 16506, + [SMALL_STATE(879)] = 16556, + [SMALL_STATE(880)] = 16606, + [SMALL_STATE(881)] = 16656, + [SMALL_STATE(882)] = 16706, + [SMALL_STATE(883)] = 16756, + [SMALL_STATE(884)] = 16806, + [SMALL_STATE(885)] = 16856, + [SMALL_STATE(886)] = 16906, + [SMALL_STATE(887)] = 16956, + [SMALL_STATE(888)] = 17006, + [SMALL_STATE(889)] = 17056, + [SMALL_STATE(890)] = 17106, + [SMALL_STATE(891)] = 17156, + [SMALL_STATE(892)] = 17206, + [SMALL_STATE(893)] = 17256, + [SMALL_STATE(894)] = 17306, + [SMALL_STATE(895)] = 17356, + [SMALL_STATE(896)] = 17406, + [SMALL_STATE(897)] = 17456, + [SMALL_STATE(898)] = 17506, + [SMALL_STATE(899)] = 17556, + [SMALL_STATE(900)] = 17606, + [SMALL_STATE(901)] = 17656, + [SMALL_STATE(902)] = 17706, + [SMALL_STATE(903)] = 17756, + [SMALL_STATE(904)] = 17806, + [SMALL_STATE(905)] = 17856, + [SMALL_STATE(906)] = 17906, + [SMALL_STATE(907)] = 17956, + [SMALL_STATE(908)] = 18006, + [SMALL_STATE(909)] = 18056, + [SMALL_STATE(910)] = 18142, + [SMALL_STATE(911)] = 18196, + [SMALL_STATE(912)] = 18282, + [SMALL_STATE(913)] = 18336, + [SMALL_STATE(914)] = 18390, + [SMALL_STATE(915)] = 18440, + [SMALL_STATE(916)] = 18493, + [SMALL_STATE(917)] = 18574, + [SMALL_STATE(918)] = 18627, + [SMALL_STATE(919)] = 18680, + [SMALL_STATE(920)] = 18761, + [SMALL_STATE(921)] = 18842, + [SMALL_STATE(922)] = 18923, + [SMALL_STATE(923)] = 18971, + [SMALL_STATE(924)] = 19030, + [SMALL_STATE(925)] = 19105, + [SMALL_STATE(926)] = 19184, + [SMALL_STATE(927)] = 19261, + [SMALL_STATE(928)] = 19324, + [SMALL_STATE(929)] = 19397, + [SMALL_STATE(930)] = 19468, + [SMALL_STATE(931)] = 19537, + [SMALL_STATE(932)] = 19602, + [SMALL_STATE(933)] = 19685, + [SMALL_STATE(934)] = 19744, + [SMALL_STATE(935)] = 19827, + [SMALL_STATE(936)] = 19908, + [SMALL_STATE(937)] = 19991, + [SMALL_STATE(938)] = 20048, + [SMALL_STATE(939)] = 20107, + [SMALL_STATE(940)] = 20166, + [SMALL_STATE(941)] = 20227, + [SMALL_STATE(942)] = 20286, + [SMALL_STATE(943)] = 20345, + [SMALL_STATE(944)] = 20391, + [SMALL_STATE(945)] = 20447, + [SMALL_STATE(946)] = 20501, + [SMALL_STATE(947)] = 20547, + [SMALL_STATE(948)] = 20593, + [SMALL_STATE(949)] = 20643, + [SMALL_STATE(950)] = 20688, + [SMALL_STATE(951)] = 20733, + [SMALL_STATE(952)] = 20778, + [SMALL_STATE(953)] = 20823, + [SMALL_STATE(954)] = 20868, + [SMALL_STATE(955)] = 20913, + [SMALL_STATE(956)] = 20958, + [SMALL_STATE(957)] = 21003, + [SMALL_STATE(958)] = 21080, + [SMALL_STATE(959)] = 21131, + [SMALL_STATE(960)] = 21208, + [SMALL_STATE(961)] = 21283, + [SMALL_STATE(962)] = 21358, + [SMALL_STATE(963)] = 21403, + [SMALL_STATE(964)] = 21448, + [SMALL_STATE(965)] = 21522, + [SMALL_STATE(966)] = 21566, + [SMALL_STATE(967)] = 21640, + [SMALL_STATE(968)] = 21714, + [SMALL_STATE(969)] = 21766, + [SMALL_STATE(970)] = 21810, + [SMALL_STATE(971)] = 21884, + [SMALL_STATE(972)] = 21958, + [SMALL_STATE(973)] = 22032, + [SMALL_STATE(974)] = 22106, + [SMALL_STATE(975)] = 22150, + [SMALL_STATE(976)] = 22224, + [SMALL_STATE(977)] = 22298, + [SMALL_STATE(978)] = 22372, + [SMALL_STATE(979)] = 22446, + [SMALL_STATE(980)] = 22520, + [SMALL_STATE(981)] = 22594, + [SMALL_STATE(982)] = 22668, + [SMALL_STATE(983)] = 22739, + [SMALL_STATE(984)] = 22812, + [SMALL_STATE(985)] = 22885, + [SMALL_STATE(986)] = 22956, + [SMALL_STATE(987)] = 23027, + [SMALL_STATE(988)] = 23095, + [SMALL_STATE(989)] = 23163, + [SMALL_STATE(990)] = 23231, + [SMALL_STATE(991)] = 23299, + [SMALL_STATE(992)] = 23367, + [SMALL_STATE(993)] = 23435, + [SMALL_STATE(994)] = 23503, + [SMALL_STATE(995)] = 23571, + [SMALL_STATE(996)] = 23639, + [SMALL_STATE(997)] = 23707, + [SMALL_STATE(998)] = 23775, + [SMALL_STATE(999)] = 23843, + [SMALL_STATE(1000)] = 23913, + [SMALL_STATE(1001)] = 23983, + [SMALL_STATE(1002)] = 24048, + [SMALL_STATE(1003)] = 24117, + [SMALL_STATE(1004)] = 24184, + [SMALL_STATE(1005)] = 24249, + [SMALL_STATE(1006)] = 24312, + [SMALL_STATE(1007)] = 24371, + [SMALL_STATE(1008)] = 24428, + [SMALL_STATE(1009)] = 24505, + [SMALL_STATE(1010)] = 24582, + [SMALL_STATE(1011)] = 24659, + [SMALL_STATE(1012)] = 24736, + [SMALL_STATE(1013)] = 24809, + [SMALL_STATE(1014)] = 24886, + [SMALL_STATE(1015)] = 24957, + [SMALL_STATE(1016)] = 25022, + [SMALL_STATE(1017)] = 25091, + [SMALL_STATE(1018)] = 25156, + [SMALL_STATE(1019)] = 25223, + [SMALL_STATE(1020)] = 25298, + [SMALL_STATE(1021)] = 25375, + [SMALL_STATE(1022)] = 25416, + [SMALL_STATE(1023)] = 25481, + [SMALL_STATE(1024)] = 25544, + [SMALL_STATE(1025)] = 25603, + [SMALL_STATE(1026)] = 25678, + [SMALL_STATE(1027)] = 25735, + [SMALL_STATE(1028)] = 25790, + [SMALL_STATE(1029)] = 25831, + [SMALL_STATE(1030)] = 25908, + [SMALL_STATE(1031)] = 25963, + [SMALL_STATE(1032)] = 26036, + [SMALL_STATE(1033)] = 26107, + [SMALL_STATE(1034)] = 26147, + [SMALL_STATE(1035)] = 26187, + [SMALL_STATE(1036)] = 26227, + [SMALL_STATE(1037)] = 26267, + [SMALL_STATE(1038)] = 26316, + [SMALL_STATE(1039)] = 26363, + [SMALL_STATE(1040)] = 26437, + [SMALL_STATE(1041)] = 26493, + [SMALL_STATE(1042)] = 26549, + [SMALL_STATE(1043)] = 26623, + [SMALL_STATE(1044)] = 26698, + [SMALL_STATE(1045)] = 26739, + [SMALL_STATE(1046)] = 26814, + [SMALL_STATE(1047)] = 26889, + [SMALL_STATE(1048)] = 26964, + [SMALL_STATE(1049)] = 27005, + [SMALL_STATE(1050)] = 27046, + [SMALL_STATE(1051)] = 27118, + [SMALL_STATE(1052)] = 27190, + [SMALL_STATE(1053)] = 27262, + [SMALL_STATE(1054)] = 27334, + [SMALL_STATE(1055)] = 27406, + [SMALL_STATE(1056)] = 27478, + [SMALL_STATE(1057)] = 27550, + [SMALL_STATE(1058)] = 27622, + [SMALL_STATE(1059)] = 27694, + [SMALL_STATE(1060)] = 27764, + [SMALL_STATE(1061)] = 27836, + [SMALL_STATE(1062)] = 27908, + [SMALL_STATE(1063)] = 27960, + [SMALL_STATE(1064)] = 28028, + [SMALL_STATE(1065)] = 28094, + [SMALL_STATE(1066)] = 28160, + [SMALL_STATE(1067)] = 28224, + [SMALL_STATE(1068)] = 28286, + [SMALL_STATE(1069)] = 28346, + [SMALL_STATE(1070)] = 28402, + [SMALL_STATE(1071)] = 28456, + [SMALL_STATE(1072)] = 28528, + [SMALL_STATE(1073)] = 28600, + [SMALL_STATE(1074)] = 28672, + [SMALL_STATE(1075)] = 28744, + [SMALL_STATE(1076)] = 28816, + [SMALL_STATE(1077)] = 28888, + [SMALL_STATE(1078)] = 28960, + [SMALL_STATE(1079)] = 29032, + [SMALL_STATE(1080)] = 29102, + [SMALL_STATE(1081)] = 29172, + [SMALL_STATE(1082)] = 29242, + [SMALL_STATE(1083)] = 29314, + [SMALL_STATE(1084)] = 29386, + [SMALL_STATE(1085)] = 29458, + [SMALL_STATE(1086)] = 29528, + [SMALL_STATE(1087)] = 29600, + [SMALL_STATE(1088)] = 29672, + [SMALL_STATE(1089)] = 29744, + [SMALL_STATE(1090)] = 29816, + [SMALL_STATE(1091)] = 29886, + [SMALL_STATE(1092)] = 29958, + [SMALL_STATE(1093)] = 30030, + [SMALL_STATE(1094)] = 30102, + [SMALL_STATE(1095)] = 30172, + [SMALL_STATE(1096)] = 30246, + [SMALL_STATE(1097)] = 30318, + [SMALL_STATE(1098)] = 30388, + [SMALL_STATE(1099)] = 30457, + [SMALL_STATE(1100)] = 30526, + [SMALL_STATE(1101)] = 30595, + [SMALL_STATE(1102)] = 30664, + [SMALL_STATE(1103)] = 30733, + [SMALL_STATE(1104)] = 30802, + [SMALL_STATE(1105)] = 30871, + [SMALL_STATE(1106)] = 30940, + [SMALL_STATE(1107)] = 31009, + [SMALL_STATE(1108)] = 31078, + [SMALL_STATE(1109)] = 31147, + [SMALL_STATE(1110)] = 31202, + [SMALL_STATE(1111)] = 31257, + [SMALL_STATE(1112)] = 31312, + [SMALL_STATE(1113)] = 31367, + [SMALL_STATE(1114)] = 31436, + [SMALL_STATE(1115)] = 31505, + [SMALL_STATE(1116)] = 31574, + [SMALL_STATE(1117)] = 31643, + [SMALL_STATE(1118)] = 31698, + [SMALL_STATE(1119)] = 31753, + [SMALL_STATE(1120)] = 31822, + [SMALL_STATE(1121)] = 31891, + [SMALL_STATE(1122)] = 31960, + [SMALL_STATE(1123)] = 32029, + [SMALL_STATE(1124)] = 32098, + [SMALL_STATE(1125)] = 32167, + [SMALL_STATE(1126)] = 32236, + [SMALL_STATE(1127)] = 32291, + [SMALL_STATE(1128)] = 32360, + [SMALL_STATE(1129)] = 32415, + [SMALL_STATE(1130)] = 32484, + [SMALL_STATE(1131)] = 32553, + [SMALL_STATE(1132)] = 32605, + [SMALL_STATE(1133)] = 32657, + [SMALL_STATE(1134)] = 32693, + [SMALL_STATE(1135)] = 32759, + [SMALL_STATE(1136)] = 32811, + [SMALL_STATE(1137)] = 32863, + [SMALL_STATE(1138)] = 32903, + [SMALL_STATE(1139)] = 32955, + [SMALL_STATE(1140)] = 33007, + [SMALL_STATE(1141)] = 33059, + [SMALL_STATE(1142)] = 33111, + [SMALL_STATE(1143)] = 33163, + [SMALL_STATE(1144)] = 33197, + [SMALL_STATE(1145)] = 33238, + [SMALL_STATE(1146)] = 33279, + [SMALL_STATE(1147)] = 33332, + [SMALL_STATE(1148)] = 33373, + [SMALL_STATE(1149)] = 33414, + [SMALL_STATE(1150)] = 33470, + [SMALL_STATE(1151)] = 33505, + [SMALL_STATE(1152)] = 33540, + [SMALL_STATE(1153)] = 33575, + [SMALL_STATE(1154)] = 33610, + [SMALL_STATE(1155)] = 33645, + [SMALL_STATE(1156)] = 33680, + [SMALL_STATE(1157)] = 33717, + [SMALL_STATE(1158)] = 33752, + [SMALL_STATE(1159)] = 33787, + [SMALL_STATE(1160)] = 33822, + [SMALL_STATE(1161)] = 33857, + [SMALL_STATE(1162)] = 33892, + [SMALL_STATE(1163)] = 33927, + [SMALL_STATE(1164)] = 33962, + [SMALL_STATE(1165)] = 33996, + [SMALL_STATE(1166)] = 34050, + [SMALL_STATE(1167)] = 34104, + [SMALL_STATE(1168)] = 34158, + [SMALL_STATE(1169)] = 34212, + [SMALL_STATE(1170)] = 34263, + [SMALL_STATE(1171)] = 34314, + [SMALL_STATE(1172)] = 34357, + [SMALL_STATE(1173)] = 34390, + [SMALL_STATE(1174)] = 34433, + [SMALL_STATE(1175)] = 34484, + [SMALL_STATE(1176)] = 34535, + [SMALL_STATE(1177)] = 34590, + [SMALL_STATE(1178)] = 34633, + [SMALL_STATE(1179)] = 34688, + [SMALL_STATE(1180)] = 34739, + [SMALL_STATE(1181)] = 34790, + [SMALL_STATE(1182)] = 34841, + [SMALL_STATE(1183)] = 34892, + [SMALL_STATE(1184)] = 34943, + [SMALL_STATE(1185)] = 34998, + [SMALL_STATE(1186)] = 35049, + [SMALL_STATE(1187)] = 35090, + [SMALL_STATE(1188)] = 35141, + [SMALL_STATE(1189)] = 35177, + [SMALL_STATE(1190)] = 35217, + [SMALL_STATE(1191)] = 35257, + [SMALL_STATE(1192)] = 35297, + [SMALL_STATE(1193)] = 35331, + [SMALL_STATE(1194)] = 35371, + [SMALL_STATE(1195)] = 35411, + [SMALL_STATE(1196)] = 35451, + [SMALL_STATE(1197)] = 35491, + [SMALL_STATE(1198)] = 35537, + [SMALL_STATE(1199)] = 35577, + [SMALL_STATE(1200)] = 35623, + [SMALL_STATE(1201)] = 35663, + [SMALL_STATE(1202)] = 35691, + [SMALL_STATE(1203)] = 35723, + [SMALL_STATE(1204)] = 35763, + [SMALL_STATE(1205)] = 35803, + [SMALL_STATE(1206)] = 35853, + [SMALL_STATE(1207)] = 35893, + [SMALL_STATE(1208)] = 35933, + [SMALL_STATE(1209)] = 35961, + [SMALL_STATE(1210)] = 35989, + [SMALL_STATE(1211)] = 36029, + [SMALL_STATE(1212)] = 36069, + [SMALL_STATE(1213)] = 36109, + [SMALL_STATE(1214)] = 36153, + [SMALL_STATE(1215)] = 36193, + [SMALL_STATE(1216)] = 36233, + [SMALL_STATE(1217)] = 36273, + [SMALL_STATE(1218)] = 36313, + [SMALL_STATE(1219)] = 36353, + [SMALL_STATE(1220)] = 36395, + [SMALL_STATE(1221)] = 36423, + [SMALL_STATE(1222)] = 36463, + [SMALL_STATE(1223)] = 36503, + [SMALL_STATE(1224)] = 36543, + [SMALL_STATE(1225)] = 36583, + [SMALL_STATE(1226)] = 36623, + [SMALL_STATE(1227)] = 36663, + [SMALL_STATE(1228)] = 36703, + [SMALL_STATE(1229)] = 36743, + [SMALL_STATE(1230)] = 36771, + [SMALL_STATE(1231)] = 36811, + [SMALL_STATE(1232)] = 36851, + [SMALL_STATE(1233)] = 36891, + [SMALL_STATE(1234)] = 36931, + [SMALL_STATE(1235)] = 36971, + [SMALL_STATE(1236)] = 37011, + [SMALL_STATE(1237)] = 37051, + [SMALL_STATE(1238)] = 37091, + [SMALL_STATE(1239)] = 37131, + [SMALL_STATE(1240)] = 37171, + [SMALL_STATE(1241)] = 37199, + [SMALL_STATE(1242)] = 37239, + [SMALL_STATE(1243)] = 37287, + [SMALL_STATE(1244)] = 37314, + [SMALL_STATE(1245)] = 37359, + [SMALL_STATE(1246)] = 37404, + [SMALL_STATE(1247)] = 37449, + [SMALL_STATE(1248)] = 37494, + [SMALL_STATE(1249)] = 37539, + [SMALL_STATE(1250)] = 37584, + [SMALL_STATE(1251)] = 37627, + [SMALL_STATE(1252)] = 37654, + [SMALL_STATE(1253)] = 37697, + [SMALL_STATE(1254)] = 37738, + [SMALL_STATE(1255)] = 37783, + [SMALL_STATE(1256)] = 37828, + [SMALL_STATE(1257)] = 37867, + [SMALL_STATE(1258)] = 37904, + [SMALL_STATE(1259)] = 37931, + [SMALL_STATE(1260)] = 37976, + [SMALL_STATE(1261)] = 38011, + [SMALL_STATE(1262)] = 38044, + [SMALL_STATE(1263)] = 38089, + [SMALL_STATE(1264)] = 38120, + [SMALL_STATE(1265)] = 38165, + [SMALL_STATE(1266)] = 38192, + [SMALL_STATE(1267)] = 38237, + [SMALL_STATE(1268)] = 38282, + [SMALL_STATE(1269)] = 38327, + [SMALL_STATE(1270)] = 38370, + [SMALL_STATE(1271)] = 38415, + [SMALL_STATE(1272)] = 38460, + [SMALL_STATE(1273)] = 38505, + [SMALL_STATE(1274)] = 38550, + [SMALL_STATE(1275)] = 38593, + [SMALL_STATE(1276)] = 38638, + [SMALL_STATE(1277)] = 38687, + [SMALL_STATE(1278)] = 38716, + [SMALL_STATE(1279)] = 38743, + [SMALL_STATE(1280)] = 38788, + [SMALL_STATE(1281)] = 38833, + [SMALL_STATE(1282)] = 38876, + [SMALL_STATE(1283)] = 38921, + [SMALL_STATE(1284)] = 38948, + [SMALL_STATE(1285)] = 38993, + [SMALL_STATE(1286)] = 39020, + [SMALL_STATE(1287)] = 39047, + [SMALL_STATE(1288)] = 39074, + [SMALL_STATE(1289)] = 39123, + [SMALL_STATE(1290)] = 39150, + [SMALL_STATE(1291)] = 39192, + [SMALL_STATE(1292)] = 39232, + [SMALL_STATE(1293)] = 39276, + [SMALL_STATE(1294)] = 39316, + [SMALL_STATE(1295)] = 39356, + [SMALL_STATE(1296)] = 39396, + [SMALL_STATE(1297)] = 39436, + [SMALL_STATE(1298)] = 39472, + [SMALL_STATE(1299)] = 39514, + [SMALL_STATE(1300)] = 39556, + [SMALL_STATE(1301)] = 39596, + [SMALL_STATE(1302)] = 39635, + [SMALL_STATE(1303)] = 39666, + [SMALL_STATE(1304)] = 39697, + [SMALL_STATE(1305)] = 39728, + [SMALL_STATE(1306)] = 39759, + [SMALL_STATE(1307)] = 39787, + [SMALL_STATE(1308)] = 39829, + [SMALL_STATE(1309)] = 39871, + [SMALL_STATE(1310)] = 39913, + [SMALL_STATE(1311)] = 39940, + [SMALL_STATE(1312)] = 39967, + [SMALL_STATE(1313)] = 40006, + [SMALL_STATE(1314)] = 40045, + [SMALL_STATE(1315)] = 40078, + [SMALL_STATE(1316)] = 40101, + [SMALL_STATE(1317)] = 40124, + [SMALL_STATE(1318)] = 40163, + [SMALL_STATE(1319)] = 40202, + [SMALL_STATE(1320)] = 40225, + [SMALL_STATE(1321)] = 40257, + [SMALL_STATE(1322)] = 40289, + [SMALL_STATE(1323)] = 40321, + [SMALL_STATE(1324)] = 40353, + [SMALL_STATE(1325)] = 40392, + [SMALL_STATE(1326)] = 40425, + [SMALL_STATE(1327)] = 40446, + [SMALL_STATE(1328)] = 40483, + [SMALL_STATE(1329)] = 40504, + [SMALL_STATE(1330)] = 40541, + [SMALL_STATE(1331)] = 40578, + [SMALL_STATE(1332)] = 40615, + [SMALL_STATE(1333)] = 40652, + [SMALL_STATE(1334)] = 40689, + [SMALL_STATE(1335)] = 40710, + [SMALL_STATE(1336)] = 40747, + [SMALL_STATE(1337)] = 40784, + [SMALL_STATE(1338)] = 40805, + [SMALL_STATE(1339)] = 40842, + [SMALL_STATE(1340)] = 40879, + [SMALL_STATE(1341)] = 40900, + [SMALL_STATE(1342)] = 40921, + [SMALL_STATE(1343)] = 40954, + [SMALL_STATE(1344)] = 40975, + [SMALL_STATE(1345)] = 41012, + [SMALL_STATE(1346)] = 41039, + [SMALL_STATE(1347)] = 41069, + [SMALL_STATE(1348)] = 41103, + [SMALL_STATE(1349)] = 41133, + [SMALL_STATE(1350)] = 41163, + [SMALL_STATE(1351)] = 41193, + [SMALL_STATE(1352)] = 41227, + [SMALL_STATE(1353)] = 41250, + [SMALL_STATE(1354)] = 41279, + [SMALL_STATE(1355)] = 41304, + [SMALL_STATE(1356)] = 41333, + [SMALL_STATE(1357)] = 41362, + [SMALL_STATE(1358)] = 41393, + [SMALL_STATE(1359)] = 41422, + [SMALL_STATE(1360)] = 41451, + [SMALL_STATE(1361)] = 41482, + [SMALL_STATE(1362)] = 41511, + [SMALL_STATE(1363)] = 41542, + [SMALL_STATE(1364)] = 41565, + [SMALL_STATE(1365)] = 41590, + [SMALL_STATE(1366)] = 41619, + [SMALL_STATE(1367)] = 41642, + [SMALL_STATE(1368)] = 41673, + [SMALL_STATE(1369)] = 41702, + [SMALL_STATE(1370)] = 41731, + [SMALL_STATE(1371)] = 41762, + [SMALL_STATE(1372)] = 41791, + [SMALL_STATE(1373)] = 41820, + [SMALL_STATE(1374)] = 41851, + [SMALL_STATE(1375)] = 41880, + [SMALL_STATE(1376)] = 41909, + [SMALL_STATE(1377)] = 41938, + [SMALL_STATE(1378)] = 41967, + [SMALL_STATE(1379)] = 41998, + [SMALL_STATE(1380)] = 42027, + [SMALL_STATE(1381)] = 42056, + [SMALL_STATE(1382)] = 42085, + [SMALL_STATE(1383)] = 42116, + [SMALL_STATE(1384)] = 42149, + [SMALL_STATE(1385)] = 42171, + [SMALL_STATE(1386)] = 42195, + [SMALL_STATE(1387)] = 42227, + [SMALL_STATE(1388)] = 42259, + [SMALL_STATE(1389)] = 42287, + [SMALL_STATE(1390)] = 42315, + [SMALL_STATE(1391)] = 42343, + [SMALL_STATE(1392)] = 42375, + [SMALL_STATE(1393)] = 42403, + [SMALL_STATE(1394)] = 42425, + [SMALL_STATE(1395)] = 42449, + [SMALL_STATE(1396)] = 42477, + [SMALL_STATE(1397)] = 42509, + [SMALL_STATE(1398)] = 42533, + [SMALL_STATE(1399)] = 42562, + [SMALL_STATE(1400)] = 42585, + [SMALL_STATE(1401)] = 42614, + [SMALL_STATE(1402)] = 42643, + [SMALL_STATE(1403)] = 42664, + [SMALL_STATE(1404)] = 42693, + [SMALL_STATE(1405)] = 42722, + [SMALL_STATE(1406)] = 42743, + [SMALL_STATE(1407)] = 42764, + [SMALL_STATE(1408)] = 42785, + [SMALL_STATE(1409)] = 42812, + [SMALL_STATE(1410)] = 42841, + [SMALL_STATE(1411)] = 42858, + [SMALL_STATE(1412)] = 42887, + [SMALL_STATE(1413)] = 42904, + [SMALL_STATE(1414)] = 42925, + [SMALL_STATE(1415)] = 42942, + [SMALL_STATE(1416)] = 42959, + [SMALL_STATE(1417)] = 42982, + [SMALL_STATE(1418)] = 43003, + [SMALL_STATE(1419)] = 43024, + [SMALL_STATE(1420)] = 43045, + [SMALL_STATE(1421)] = 43062, + [SMALL_STATE(1422)] = 43079, + [SMALL_STATE(1423)] = 43100, + [SMALL_STATE(1424)] = 43121, + [SMALL_STATE(1425)] = 43146, + [SMALL_STATE(1426)] = 43163, + [SMALL_STATE(1427)] = 43180, + [SMALL_STATE(1428)] = 43209, + [SMALL_STATE(1429)] = 43230, + [SMALL_STATE(1430)] = 43247, + [SMALL_STATE(1431)] = 43273, + [SMALL_STATE(1432)] = 43289, + [SMALL_STATE(1433)] = 43309, + [SMALL_STATE(1434)] = 43329, + [SMALL_STATE(1435)] = 43355, + [SMALL_STATE(1436)] = 43371, + [SMALL_STATE(1437)] = 43387, + [SMALL_STATE(1438)] = 43413, + [SMALL_STATE(1439)] = 43439, + [SMALL_STATE(1440)] = 43465, + [SMALL_STATE(1441)] = 43481, + [SMALL_STATE(1442)] = 43503, + [SMALL_STATE(1443)] = 43521, + [SMALL_STATE(1444)] = 43547, + [SMALL_STATE(1445)] = 43573, + [SMALL_STATE(1446)] = 43599, + [SMALL_STATE(1447)] = 43621, + [SMALL_STATE(1448)] = 43637, + [SMALL_STATE(1449)] = 43663, + [SMALL_STATE(1450)] = 43679, + [SMALL_STATE(1451)] = 43699, + [SMALL_STATE(1452)] = 43725, + [SMALL_STATE(1453)] = 43751, + [SMALL_STATE(1454)] = 43777, + [SMALL_STATE(1455)] = 43803, + [SMALL_STATE(1456)] = 43825, + [SMALL_STATE(1457)] = 43847, + [SMALL_STATE(1458)] = 43863, + [SMALL_STATE(1459)] = 43879, + [SMALL_STATE(1460)] = 43895, + [SMALL_STATE(1461)] = 43911, + [SMALL_STATE(1462)] = 43934, + [SMALL_STATE(1463)] = 43957, + [SMALL_STATE(1464)] = 43974, + [SMALL_STATE(1465)] = 43997, + [SMALL_STATE(1466)] = 44020, + [SMALL_STATE(1467)] = 44043, + [SMALL_STATE(1468)] = 44066, + [SMALL_STATE(1469)] = 44089, + [SMALL_STATE(1470)] = 44112, + [SMALL_STATE(1471)] = 44127, + [SMALL_STATE(1472)] = 44144, + [SMALL_STATE(1473)] = 44159, + [SMALL_STATE(1474)] = 44174, + [SMALL_STATE(1475)] = 44197, + [SMALL_STATE(1476)] = 44212, + [SMALL_STATE(1477)] = 44227, + [SMALL_STATE(1478)] = 44242, + [SMALL_STATE(1479)] = 44257, + [SMALL_STATE(1480)] = 44280, + [SMALL_STATE(1481)] = 44295, + [SMALL_STATE(1482)] = 44310, + [SMALL_STATE(1483)] = 44333, + [SMALL_STATE(1484)] = 44348, + [SMALL_STATE(1485)] = 44371, + [SMALL_STATE(1486)] = 44388, + [SMALL_STATE(1487)] = 44411, + [SMALL_STATE(1488)] = 44426, + [SMALL_STATE(1489)] = 44445, + [SMALL_STATE(1490)] = 44468, + [SMALL_STATE(1491)] = 44491, + [SMALL_STATE(1492)] = 44514, + [SMALL_STATE(1493)] = 44529, + [SMALL_STATE(1494)] = 44552, + [SMALL_STATE(1495)] = 44575, + [SMALL_STATE(1496)] = 44598, + [SMALL_STATE(1497)] = 44615, + [SMALL_STATE(1498)] = 44634, + [SMALL_STATE(1499)] = 44649, + [SMALL_STATE(1500)] = 44667, + [SMALL_STATE(1501)] = 44681, + [SMALL_STATE(1502)] = 44695, + [SMALL_STATE(1503)] = 44709, + [SMALL_STATE(1504)] = 44727, + [SMALL_STATE(1505)] = 44745, + [SMALL_STATE(1506)] = 44759, + [SMALL_STATE(1507)] = 44773, + [SMALL_STATE(1508)] = 44787, + [SMALL_STATE(1509)] = 44805, + [SMALL_STATE(1510)] = 44819, + [SMALL_STATE(1511)] = 44833, + [SMALL_STATE(1512)] = 44847, + [SMALL_STATE(1513)] = 44861, + [SMALL_STATE(1514)] = 44875, + [SMALL_STATE(1515)] = 44893, + [SMALL_STATE(1516)] = 44911, + [SMALL_STATE(1517)] = 44929, + [SMALL_STATE(1518)] = 44943, + [SMALL_STATE(1519)] = 44957, + [SMALL_STATE(1520)] = 44971, + [SMALL_STATE(1521)] = 44985, + [SMALL_STATE(1522)] = 45005, + [SMALL_STATE(1523)] = 45023, + [SMALL_STATE(1524)] = 45037, + [SMALL_STATE(1525)] = 45055, + [SMALL_STATE(1526)] = 45072, + [SMALL_STATE(1527)] = 45091, + [SMALL_STATE(1528)] = 45108, + [SMALL_STATE(1529)] = 45125, + [SMALL_STATE(1530)] = 45142, + [SMALL_STATE(1531)] = 45159, + [SMALL_STATE(1532)] = 45176, + [SMALL_STATE(1533)] = 45187, + [SMALL_STATE(1534)] = 45204, + [SMALL_STATE(1535)] = 45221, + [SMALL_STATE(1536)] = 45238, + [SMALL_STATE(1537)] = 45255, + [SMALL_STATE(1538)] = 45272, + [SMALL_STATE(1539)] = 45289, + [SMALL_STATE(1540)] = 45302, + [SMALL_STATE(1541)] = 45319, + [SMALL_STATE(1542)] = 45338, + [SMALL_STATE(1543)] = 45355, + [SMALL_STATE(1544)] = 45372, + [SMALL_STATE(1545)] = 45389, + [SMALL_STATE(1546)] = 45408, + [SMALL_STATE(1547)] = 45425, + [SMALL_STATE(1548)] = 45442, + [SMALL_STATE(1549)] = 45459, + [SMALL_STATE(1550)] = 45476, + [SMALL_STATE(1551)] = 45493, + [SMALL_STATE(1552)] = 45510, + [SMALL_STATE(1553)] = 45527, + [SMALL_STATE(1554)] = 45543, + [SMALL_STATE(1555)] = 45559, + [SMALL_STATE(1556)] = 45573, + [SMALL_STATE(1557)] = 45585, + [SMALL_STATE(1558)] = 45599, + [SMALL_STATE(1559)] = 45613, + [SMALL_STATE(1560)] = 45627, + [SMALL_STATE(1561)] = 45641, + [SMALL_STATE(1562)] = 45657, + [SMALL_STATE(1563)] = 45673, + [SMALL_STATE(1564)] = 45687, + [SMALL_STATE(1565)] = 45701, + [SMALL_STATE(1566)] = 45717, + [SMALL_STATE(1567)] = 45731, + [SMALL_STATE(1568)] = 45745, + [SMALL_STATE(1569)] = 45759, + [SMALL_STATE(1570)] = 45775, + [SMALL_STATE(1571)] = 45791, + [SMALL_STATE(1572)] = 45805, + [SMALL_STATE(1573)] = 45821, + [SMALL_STATE(1574)] = 45835, + [SMALL_STATE(1575)] = 45851, + [SMALL_STATE(1576)] = 45865, + [SMALL_STATE(1577)] = 45881, + [SMALL_STATE(1578)] = 45895, + [SMALL_STATE(1579)] = 45911, + [SMALL_STATE(1580)] = 45925, + [SMALL_STATE(1581)] = 45941, + [SMALL_STATE(1582)] = 45957, + [SMALL_STATE(1583)] = 45973, + [SMALL_STATE(1584)] = 45987, + [SMALL_STATE(1585)] = 46001, + [SMALL_STATE(1586)] = 46015, + [SMALL_STATE(1587)] = 46031, + [SMALL_STATE(1588)] = 46047, + [SMALL_STATE(1589)] = 46061, + [SMALL_STATE(1590)] = 46077, + [SMALL_STATE(1591)] = 46093, + [SMALL_STATE(1592)] = 46109, + [SMALL_STATE(1593)] = 46125, + [SMALL_STATE(1594)] = 46141, + [SMALL_STATE(1595)] = 46155, + [SMALL_STATE(1596)] = 46171, + [SMALL_STATE(1597)] = 46185, + [SMALL_STATE(1598)] = 46194, + [SMALL_STATE(1599)] = 46207, + [SMALL_STATE(1600)] = 46216, + [SMALL_STATE(1601)] = 46229, + [SMALL_STATE(1602)] = 46242, + [SMALL_STATE(1603)] = 46255, + [SMALL_STATE(1604)] = 46268, + [SMALL_STATE(1605)] = 46281, + [SMALL_STATE(1606)] = 46294, + [SMALL_STATE(1607)] = 46307, + [SMALL_STATE(1608)] = 46320, + [SMALL_STATE(1609)] = 46333, + [SMALL_STATE(1610)] = 46346, + [SMALL_STATE(1611)] = 46359, + [SMALL_STATE(1612)] = 46372, + [SMALL_STATE(1613)] = 46385, + [SMALL_STATE(1614)] = 46398, + [SMALL_STATE(1615)] = 46411, + [SMALL_STATE(1616)] = 46424, + [SMALL_STATE(1617)] = 46437, + [SMALL_STATE(1618)] = 46450, + [SMALL_STATE(1619)] = 46463, + [SMALL_STATE(1620)] = 46476, + [SMALL_STATE(1621)] = 46489, + [SMALL_STATE(1622)] = 46502, + [SMALL_STATE(1623)] = 46515, + [SMALL_STATE(1624)] = 46528, + [SMALL_STATE(1625)] = 46541, + [SMALL_STATE(1626)] = 46554, + [SMALL_STATE(1627)] = 46565, + [SMALL_STATE(1628)] = 46578, + [SMALL_STATE(1629)] = 46591, + [SMALL_STATE(1630)] = 46600, + [SMALL_STATE(1631)] = 46609, + [SMALL_STATE(1632)] = 46622, + [SMALL_STATE(1633)] = 46635, + [SMALL_STATE(1634)] = 46648, + [SMALL_STATE(1635)] = 46661, + [SMALL_STATE(1636)] = 46674, + [SMALL_STATE(1637)] = 46687, + [SMALL_STATE(1638)] = 46700, + [SMALL_STATE(1639)] = 46713, + [SMALL_STATE(1640)] = 46726, + [SMALL_STATE(1641)] = 46739, + [SMALL_STATE(1642)] = 46752, + [SMALL_STATE(1643)] = 46765, + [SMALL_STATE(1644)] = 46774, + [SMALL_STATE(1645)] = 46787, + [SMALL_STATE(1646)] = 46800, + [SMALL_STATE(1647)] = 46809, + [SMALL_STATE(1648)] = 46818, + [SMALL_STATE(1649)] = 46831, + [SMALL_STATE(1650)] = 46844, + [SMALL_STATE(1651)] = 46857, + [SMALL_STATE(1652)] = 46870, + [SMALL_STATE(1653)] = 46883, + [SMALL_STATE(1654)] = 46894, + [SMALL_STATE(1655)] = 46903, + [SMALL_STATE(1656)] = 46916, + [SMALL_STATE(1657)] = 46929, + [SMALL_STATE(1658)] = 46942, + [SMALL_STATE(1659)] = 46955, + [SMALL_STATE(1660)] = 46968, + [SMALL_STATE(1661)] = 46981, + [SMALL_STATE(1662)] = 46994, + [SMALL_STATE(1663)] = 47007, + [SMALL_STATE(1664)] = 47020, + [SMALL_STATE(1665)] = 47033, + [SMALL_STATE(1666)] = 47046, + [SMALL_STATE(1667)] = 47059, + [SMALL_STATE(1668)] = 47072, + [SMALL_STATE(1669)] = 47085, + [SMALL_STATE(1670)] = 47094, + [SMALL_STATE(1671)] = 47107, + [SMALL_STATE(1672)] = 47120, + [SMALL_STATE(1673)] = 47133, + [SMALL_STATE(1674)] = 47144, + [SMALL_STATE(1675)] = 47157, + [SMALL_STATE(1676)] = 47166, + [SMALL_STATE(1677)] = 47179, + [SMALL_STATE(1678)] = 47192, + [SMALL_STATE(1679)] = 47205, + [SMALL_STATE(1680)] = 47218, + [SMALL_STATE(1681)] = 47231, + [SMALL_STATE(1682)] = 47244, + [SMALL_STATE(1683)] = 47255, + [SMALL_STATE(1684)] = 47268, + [SMALL_STATE(1685)] = 47281, + [SMALL_STATE(1686)] = 47294, + [SMALL_STATE(1687)] = 47307, + [SMALL_STATE(1688)] = 47320, + [SMALL_STATE(1689)] = 47333, + [SMALL_STATE(1690)] = 47346, + [SMALL_STATE(1691)] = 47359, + [SMALL_STATE(1692)] = 47372, + [SMALL_STATE(1693)] = 47385, + [SMALL_STATE(1694)] = 47398, + [SMALL_STATE(1695)] = 47411, + [SMALL_STATE(1696)] = 47424, + [SMALL_STATE(1697)] = 47437, + [SMALL_STATE(1698)] = 47450, + [SMALL_STATE(1699)] = 47463, + [SMALL_STATE(1700)] = 47476, + [SMALL_STATE(1701)] = 47489, + [SMALL_STATE(1702)] = 47502, + [SMALL_STATE(1703)] = 47515, + [SMALL_STATE(1704)] = 47524, + [SMALL_STATE(1705)] = 47537, + [SMALL_STATE(1706)] = 47550, + [SMALL_STATE(1707)] = 47563, + [SMALL_STATE(1708)] = 47576, + [SMALL_STATE(1709)] = 47589, + [SMALL_STATE(1710)] = 47602, + [SMALL_STATE(1711)] = 47615, + [SMALL_STATE(1712)] = 47628, + [SMALL_STATE(1713)] = 47641, + [SMALL_STATE(1714)] = 47654, + [SMALL_STATE(1715)] = 47667, + [SMALL_STATE(1716)] = 47680, + [SMALL_STATE(1717)] = 47693, + [SMALL_STATE(1718)] = 47704, + [SMALL_STATE(1719)] = 47717, + [SMALL_STATE(1720)] = 47730, + [SMALL_STATE(1721)] = 47743, + [SMALL_STATE(1722)] = 47756, + [SMALL_STATE(1723)] = 47766, + [SMALL_STATE(1724)] = 47776, + [SMALL_STATE(1725)] = 47784, + [SMALL_STATE(1726)] = 47794, + [SMALL_STATE(1727)] = 47804, + [SMALL_STATE(1728)] = 47814, + [SMALL_STATE(1729)] = 47824, + [SMALL_STATE(1730)] = 47834, + [SMALL_STATE(1731)] = 47842, + [SMALL_STATE(1732)] = 47852, + [SMALL_STATE(1733)] = 47862, + [SMALL_STATE(1734)] = 47870, + [SMALL_STATE(1735)] = 47880, + [SMALL_STATE(1736)] = 47890, + [SMALL_STATE(1737)] = 47900, + [SMALL_STATE(1738)] = 47908, + [SMALL_STATE(1739)] = 47918, + [SMALL_STATE(1740)] = 47926, + [SMALL_STATE(1741)] = 47936, + [SMALL_STATE(1742)] = 47946, + [SMALL_STATE(1743)] = 47956, + [SMALL_STATE(1744)] = 47964, + [SMALL_STATE(1745)] = 47974, + [SMALL_STATE(1746)] = 47984, + [SMALL_STATE(1747)] = 47994, + [SMALL_STATE(1748)] = 48004, + [SMALL_STATE(1749)] = 48014, + [SMALL_STATE(1750)] = 48024, + [SMALL_STATE(1751)] = 48032, + [SMALL_STATE(1752)] = 48042, + [SMALL_STATE(1753)] = 48052, + [SMALL_STATE(1754)] = 48062, + [SMALL_STATE(1755)] = 48072, + [SMALL_STATE(1756)] = 48082, + [SMALL_STATE(1757)] = 48092, + [SMALL_STATE(1758)] = 48102, + [SMALL_STATE(1759)] = 48112, + [SMALL_STATE(1760)] = 48122, + [SMALL_STATE(1761)] = 48132, + [SMALL_STATE(1762)] = 48142, + [SMALL_STATE(1763)] = 48152, + [SMALL_STATE(1764)] = 48160, + [SMALL_STATE(1765)] = 48170, + [SMALL_STATE(1766)] = 48180, + [SMALL_STATE(1767)] = 48190, + [SMALL_STATE(1768)] = 48200, + [SMALL_STATE(1769)] = 48210, + [SMALL_STATE(1770)] = 48220, + [SMALL_STATE(1771)] = 48230, + [SMALL_STATE(1772)] = 48240, + [SMALL_STATE(1773)] = 48248, + [SMALL_STATE(1774)] = 48256, + [SMALL_STATE(1775)] = 48266, + [SMALL_STATE(1776)] = 48276, + [SMALL_STATE(1777)] = 48286, + [SMALL_STATE(1778)] = 48296, + [SMALL_STATE(1779)] = 48306, + [SMALL_STATE(1780)] = 48316, + [SMALL_STATE(1781)] = 48324, + [SMALL_STATE(1782)] = 48334, + [SMALL_STATE(1783)] = 48342, + [SMALL_STATE(1784)] = 48352, + [SMALL_STATE(1785)] = 48362, + [SMALL_STATE(1786)] = 48372, + [SMALL_STATE(1787)] = 48382, + [SMALL_STATE(1788)] = 48392, + [SMALL_STATE(1789)] = 48402, + [SMALL_STATE(1790)] = 48412, + [SMALL_STATE(1791)] = 48422, + [SMALL_STATE(1792)] = 48432, + [SMALL_STATE(1793)] = 48442, + [SMALL_STATE(1794)] = 48452, + [SMALL_STATE(1795)] = 48462, + [SMALL_STATE(1796)] = 48470, + [SMALL_STATE(1797)] = 48478, + [SMALL_STATE(1798)] = 48488, + [SMALL_STATE(1799)] = 48498, + [SMALL_STATE(1800)] = 48508, + [SMALL_STATE(1801)] = 48516, + [SMALL_STATE(1802)] = 48526, + [SMALL_STATE(1803)] = 48536, + [SMALL_STATE(1804)] = 48546, + [SMALL_STATE(1805)] = 48556, + [SMALL_STATE(1806)] = 48566, + [SMALL_STATE(1807)] = 48574, + [SMALL_STATE(1808)] = 48584, + [SMALL_STATE(1809)] = 48592, + [SMALL_STATE(1810)] = 48602, + [SMALL_STATE(1811)] = 48610, + [SMALL_STATE(1812)] = 48618, + [SMALL_STATE(1813)] = 48628, + [SMALL_STATE(1814)] = 48638, + [SMALL_STATE(1815)] = 48648, + [SMALL_STATE(1816)] = 48655, + [SMALL_STATE(1817)] = 48662, + [SMALL_STATE(1818)] = 48669, + [SMALL_STATE(1819)] = 48676, + [SMALL_STATE(1820)] = 48683, + [SMALL_STATE(1821)] = 48690, + [SMALL_STATE(1822)] = 48697, + [SMALL_STATE(1823)] = 48704, + [SMALL_STATE(1824)] = 48711, + [SMALL_STATE(1825)] = 48718, + [SMALL_STATE(1826)] = 48725, + [SMALL_STATE(1827)] = 48732, + [SMALL_STATE(1828)] = 48739, + [SMALL_STATE(1829)] = 48746, + [SMALL_STATE(1830)] = 48753, + [SMALL_STATE(1831)] = 48760, + [SMALL_STATE(1832)] = 48767, + [SMALL_STATE(1833)] = 48774, + [SMALL_STATE(1834)] = 48781, + [SMALL_STATE(1835)] = 48788, + [SMALL_STATE(1836)] = 48795, + [SMALL_STATE(1837)] = 48802, + [SMALL_STATE(1838)] = 48809, + [SMALL_STATE(1839)] = 48816, + [SMALL_STATE(1840)] = 48823, + [SMALL_STATE(1841)] = 48830, + [SMALL_STATE(1842)] = 48837, + [SMALL_STATE(1843)] = 48844, + [SMALL_STATE(1844)] = 48851, + [SMALL_STATE(1845)] = 48858, + [SMALL_STATE(1846)] = 48865, + [SMALL_STATE(1847)] = 48872, + [SMALL_STATE(1848)] = 48879, + [SMALL_STATE(1849)] = 48886, + [SMALL_STATE(1850)] = 48893, + [SMALL_STATE(1851)] = 48900, + [SMALL_STATE(1852)] = 48907, + [SMALL_STATE(1853)] = 48914, + [SMALL_STATE(1854)] = 48921, + [SMALL_STATE(1855)] = 48928, + [SMALL_STATE(1856)] = 48935, + [SMALL_STATE(1857)] = 48942, + [SMALL_STATE(1858)] = 48949, + [SMALL_STATE(1859)] = 48956, + [SMALL_STATE(1860)] = 48963, + [SMALL_STATE(1861)] = 48970, + [SMALL_STATE(1862)] = 48977, + [SMALL_STATE(1863)] = 48984, + [SMALL_STATE(1864)] = 48991, + [SMALL_STATE(1865)] = 48998, + [SMALL_STATE(1866)] = 49005, + [SMALL_STATE(1867)] = 49012, + [SMALL_STATE(1868)] = 49019, + [SMALL_STATE(1869)] = 49026, + [SMALL_STATE(1870)] = 49033, + [SMALL_STATE(1871)] = 49040, + [SMALL_STATE(1872)] = 49047, + [SMALL_STATE(1873)] = 49054, + [SMALL_STATE(1874)] = 49061, + [SMALL_STATE(1875)] = 49068, + [SMALL_STATE(1876)] = 49075, + [SMALL_STATE(1877)] = 49082, + [SMALL_STATE(1878)] = 49089, + [SMALL_STATE(1879)] = 49096, + [SMALL_STATE(1880)] = 49103, + [SMALL_STATE(1881)] = 49110, + [SMALL_STATE(1882)] = 49117, + [SMALL_STATE(1883)] = 49124, + [SMALL_STATE(1884)] = 49131, + [SMALL_STATE(1885)] = 49138, + [SMALL_STATE(1886)] = 49145, + [SMALL_STATE(1887)] = 49152, + [SMALL_STATE(1888)] = 49159, + [SMALL_STATE(1889)] = 49166, + [SMALL_STATE(1890)] = 49173, + [SMALL_STATE(1891)] = 49180, + [SMALL_STATE(1892)] = 49187, + [SMALL_STATE(1893)] = 49194, + [SMALL_STATE(1894)] = 49201, + [SMALL_STATE(1895)] = 49208, + [SMALL_STATE(1896)] = 49215, + [SMALL_STATE(1897)] = 49222, + [SMALL_STATE(1898)] = 49229, + [SMALL_STATE(1899)] = 49236, + [SMALL_STATE(1900)] = 49243, + [SMALL_STATE(1901)] = 49250, + [SMALL_STATE(1902)] = 49257, + [SMALL_STATE(1903)] = 49264, + [SMALL_STATE(1904)] = 49271, + [SMALL_STATE(1905)] = 49278, + [SMALL_STATE(1906)] = 49285, + [SMALL_STATE(1907)] = 49292, + [SMALL_STATE(1908)] = 49299, + [SMALL_STATE(1909)] = 49306, + [SMALL_STATE(1910)] = 49313, + [SMALL_STATE(1911)] = 49320, + [SMALL_STATE(1912)] = 49327, + [SMALL_STATE(1913)] = 49334, + [SMALL_STATE(1914)] = 49341, + [SMALL_STATE(1915)] = 49348, + [SMALL_STATE(1916)] = 49355, + [SMALL_STATE(1917)] = 49362, + [SMALL_STATE(1918)] = 49369, + [SMALL_STATE(1919)] = 49376, + [SMALL_STATE(1920)] = 49383, + [SMALL_STATE(1921)] = 49390, + [SMALL_STATE(1922)] = 49397, + [SMALL_STATE(1923)] = 49404, + [SMALL_STATE(1924)] = 49411, + [SMALL_STATE(1925)] = 49418, + [SMALL_STATE(1926)] = 49425, + [SMALL_STATE(1927)] = 49432, + [SMALL_STATE(1928)] = 49439, + [SMALL_STATE(1929)] = 49446, + [SMALL_STATE(1930)] = 49453, + [SMALL_STATE(1931)] = 49460, + [SMALL_STATE(1932)] = 49467, + [SMALL_STATE(1933)] = 49474, + [SMALL_STATE(1934)] = 49481, + [SMALL_STATE(1935)] = 49488, + [SMALL_STATE(1936)] = 49495, + [SMALL_STATE(1937)] = 49502, + [SMALL_STATE(1938)] = 49509, + [SMALL_STATE(1939)] = 49516, + [SMALL_STATE(1940)] = 49523, + [SMALL_STATE(1941)] = 49530, + [SMALL_STATE(1942)] = 49537, + [SMALL_STATE(1943)] = 49544, + [SMALL_STATE(1944)] = 49551, + [SMALL_STATE(1945)] = 49558, + [SMALL_STATE(1946)] = 49565, + [SMALL_STATE(1947)] = 49572, + [SMALL_STATE(1948)] = 49579, + [SMALL_STATE(1949)] = 49586, + [SMALL_STATE(1950)] = 49593, + [SMALL_STATE(1951)] = 49600, + [SMALL_STATE(1952)] = 49607, + [SMALL_STATE(1953)] = 49614, + [SMALL_STATE(1954)] = 49621, + [SMALL_STATE(1955)] = 49628, + [SMALL_STATE(1956)] = 49635, + [SMALL_STATE(1957)] = 49642, + [SMALL_STATE(1958)] = 49649, + [SMALL_STATE(1959)] = 49656, + [SMALL_STATE(1960)] = 49663, + [SMALL_STATE(1961)] = 49670, + [SMALL_STATE(1962)] = 49677, + [SMALL_STATE(1963)] = 49684, + [SMALL_STATE(1964)] = 49691, + [SMALL_STATE(1965)] = 49698, + [SMALL_STATE(1966)] = 49705, + [SMALL_STATE(1967)] = 49712, + [SMALL_STATE(1968)] = 49719, + [SMALL_STATE(1969)] = 49726, + [SMALL_STATE(1970)] = 49733, + [SMALL_STATE(1971)] = 49740, + [SMALL_STATE(1972)] = 49747, + [SMALL_STATE(1973)] = 49754, + [SMALL_STATE(1974)] = 49761, + [SMALL_STATE(1975)] = 49768, + [SMALL_STATE(1976)] = 49775, + [SMALL_STATE(1977)] = 49782, + [SMALL_STATE(1978)] = 49789, + [SMALL_STATE(1979)] = 49796, + [SMALL_STATE(1980)] = 49803, + [SMALL_STATE(1981)] = 49810, + [SMALL_STATE(1982)] = 49817, + [SMALL_STATE(1983)] = 49824, + [SMALL_STATE(1984)] = 49831, + [SMALL_STATE(1985)] = 49838, + [SMALL_STATE(1986)] = 49845, + [SMALL_STATE(1987)] = 49852, + [SMALL_STATE(1988)] = 49859, + [SMALL_STATE(1989)] = 49866, + [SMALL_STATE(1990)] = 49873, + [SMALL_STATE(1991)] = 49880, + [SMALL_STATE(1992)] = 49887, + [SMALL_STATE(1993)] = 49894, + [SMALL_STATE(1994)] = 49901, + [SMALL_STATE(1995)] = 49908, + [SMALL_STATE(1996)] = 49915, + [SMALL_STATE(1997)] = 49922, + [SMALL_STATE(1998)] = 49929, + [SMALL_STATE(1999)] = 49936, + [SMALL_STATE(2000)] = 49943, + [SMALL_STATE(2001)] = 49950, + [SMALL_STATE(2002)] = 49957, + [SMALL_STATE(2003)] = 49964, + [SMALL_STATE(2004)] = 49971, + [SMALL_STATE(2005)] = 49978, + [SMALL_STATE(2006)] = 49985, + [SMALL_STATE(2007)] = 49992, + [SMALL_STATE(2008)] = 49999, + [SMALL_STATE(2009)] = 50006, + [SMALL_STATE(2010)] = 50013, + [SMALL_STATE(2011)] = 50020, + [SMALL_STATE(2012)] = 50027, + [SMALL_STATE(2013)] = 50034, + [SMALL_STATE(2014)] = 50041, + [SMALL_STATE(2015)] = 50048, + [SMALL_STATE(2016)] = 50055, + [SMALL_STATE(2017)] = 50062, + [SMALL_STATE(2018)] = 50069, + [SMALL_STATE(2019)] = 50076, + [SMALL_STATE(2020)] = 50083, + [SMALL_STATE(2021)] = 50090, + [SMALL_STATE(2022)] = 50097, + [SMALL_STATE(2023)] = 50104, + [SMALL_STATE(2024)] = 50111, + [SMALL_STATE(2025)] = 50118, + [SMALL_STATE(2026)] = 50125, + [SMALL_STATE(2027)] = 50132, + [SMALL_STATE(2028)] = 50139, + [SMALL_STATE(2029)] = 50146, + [SMALL_STATE(2030)] = 50153, + [SMALL_STATE(2031)] = 50160, + [SMALL_STATE(2032)] = 50167, + [SMALL_STATE(2033)] = 50174, + [SMALL_STATE(2034)] = 50181, + [SMALL_STATE(2035)] = 50188, + [SMALL_STATE(2036)] = 50195, + [SMALL_STATE(2037)] = 50202, + [SMALL_STATE(2038)] = 50209, + [SMALL_STATE(2039)] = 50216, + [SMALL_STATE(2040)] = 50223, + [SMALL_STATE(2041)] = 50230, + [SMALL_STATE(2042)] = 50237, + [SMALL_STATE(2043)] = 50244, + [SMALL_STATE(2044)] = 50251, + [SMALL_STATE(2045)] = 50258, + [SMALL_STATE(2046)] = 50265, + [SMALL_STATE(2047)] = 50272, + [SMALL_STATE(2048)] = 50279, + [SMALL_STATE(2049)] = 50286, + [SMALL_STATE(2050)] = 50293, + [SMALL_STATE(2051)] = 50300, + [SMALL_STATE(2052)] = 50307, + [SMALL_STATE(2053)] = 50314, + [SMALL_STATE(2054)] = 50321, + [SMALL_STATE(2055)] = 50328, + [SMALL_STATE(2056)] = 50335, + [SMALL_STATE(2057)] = 50342, + [SMALL_STATE(2058)] = 50349, + [SMALL_STATE(2059)] = 50356, + [SMALL_STATE(2060)] = 50363, + [SMALL_STATE(2061)] = 50370, + [SMALL_STATE(2062)] = 50377, + [SMALL_STATE(2063)] = 50384, + [SMALL_STATE(2064)] = 50391, + [SMALL_STATE(2065)] = 50398, + [SMALL_STATE(2066)] = 50405, + [SMALL_STATE(2067)] = 50412, + [SMALL_STATE(2068)] = 50419, + [SMALL_STATE(2069)] = 50426, + [SMALL_STATE(2070)] = 50433, + [SMALL_STATE(2071)] = 50440, + [SMALL_STATE(2072)] = 50447, + [SMALL_STATE(2073)] = 50454, + [SMALL_STATE(2074)] = 50461, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -116421,2396 +121190,2501 @@ 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(408), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [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, 41), - [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, 41), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(400), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1383), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), - [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(1903), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1723), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(994), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [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(704), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [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(1740), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), - [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), - [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(406), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1936), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1704), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(882), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1373), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1810), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1186), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1750), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(564), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [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(408), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(370), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(886), - [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(704), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [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(522), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(407), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(994), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(314), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(540), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(500), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1618), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(684), - [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(680), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [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(403), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(999), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [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(1755), - [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(1757), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1749), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1751), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(375), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [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(1681), - [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(1733), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1946), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), - [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(1910), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [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(346), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 28), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 80), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 80), - [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 84), - [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 84), - [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 89), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 89), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 90), - [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 90), - [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 75), - [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 75), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 48), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 48), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 29), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 31), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 99), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 99), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 35), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 35), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 110), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 110), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 48), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 48), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 56), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 56), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 62), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 62), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 75), - [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 75), - [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 18), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 23), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 41), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 41), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 33), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 33), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 39), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 40), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 40), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 42), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 42), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 61), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 61), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 66), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 67), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 67), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 70), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 70), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 71), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 71), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 41), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 41), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 72), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 72), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 93), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 93), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 94), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 94), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 96), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 96), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 37), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 37), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(793), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(378), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(541), - [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(541), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(555), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(245), - [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(536), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1719), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(27), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1755), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1721), - [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(564), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1959), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1757), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(372), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1970), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(475), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1983), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1987), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1819), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1724), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1824), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(540), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(500), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2013), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1899), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1456), - [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(684), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1618), - [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1531), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(684), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(680), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(786), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(83), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(33), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1720), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1740), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(599), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1938), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(314), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2008), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(468), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1858), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1870), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1911), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1868), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(783), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(23), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1691), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1693), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(597), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1956), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1711), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(337), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1992), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(458), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1953), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1865), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1890), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1761), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(790), - [1622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(176), - [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1739), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1749), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(601), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2004), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1741), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(313), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2011), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(464), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1945), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1951), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1941), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1751), - [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(778), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(150), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1681), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(522), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1881), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1733), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1946), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1725), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1910), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(715), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(536), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1766] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(988), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(322), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(827), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(379), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(604), - [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(604), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(605), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(609), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(606), - [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(607), - [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2013), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1848), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1899), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1456), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(684), - [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1618), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1531), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(684), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(680), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 41), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 41), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1679), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1924), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 41), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 57), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 57), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(620), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 86), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 86), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 58), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 87), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 119), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 123), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 123), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 107), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 107), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 108), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 118), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 118), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 124), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 128), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 128), - [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), - [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(704), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(739), - [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), - [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(711), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 105), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 105), - [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_field_expression, 3, 0, 36), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 36), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 46), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 46), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 37), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 37), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 68), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 68), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [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_argument_list, 4, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 46), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 46), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(736), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(711), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1898), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(744), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(711), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1898), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), - [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_storage_class_specifier, 1, 0, 0), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 53), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 55), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 55), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 53), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 53), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 24), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 24), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 79), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 79), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 79), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 79), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 55), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 55), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 37), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 37), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 53), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 53), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 24), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(988), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 24), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 24), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 59), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 37), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 37), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 77), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 77), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 51), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 51), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 53), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 71), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 71), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 78), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 78), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 41), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 41), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 41), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 41), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 72), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 72), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 96), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 96), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 78), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 78), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 43), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 43), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 43), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 43), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 42), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 42), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 69), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 69), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 95), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 95), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1912), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 30), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 51), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 51), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 51), SHIFT(1912), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1912), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 24), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 24), SHIFT(1912), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 77), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 77), - [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 77), SHIFT(1912), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1644), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(942), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3056] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(988), - [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(989), - [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(990), - [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 34), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 76), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 76), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 45), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 82), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 115), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 63), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 101), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 102), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 114), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 113), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 81), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1129), - [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1130), - [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1127), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1131), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1136), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1123), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), - [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 = true}}, REDUCE(sym_parameter_declaration, 1, 0, 43), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 37), SHIFT(723), - [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1124), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(723), - [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), SHIFT(723), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(723), - [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 37), SHIFT(1122), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), SHIFT(1125), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(723), - [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1126), - [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(723), - [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(723), - [3434] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(723), - [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1134), - [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1135), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1886), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 30), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 34), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 34), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 34), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 34), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 34), - [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 41), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 32), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 109), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 109), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 60), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 88), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 88), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 22), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 111), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 111), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 91), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 91), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 1, 0, 22), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 22), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 109), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 109), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 32), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 60), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 32), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 35), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 88), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 88), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 109), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 109), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 41), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 88), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 88), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1928), - [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 41), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 32), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 22), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 60), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 41), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 32), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 4, 0, 34), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 22), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 111), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 111), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 52), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 52), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 91), - [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 91), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 22), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 34), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 34), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 60), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 111), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 111), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 22), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 91), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 91), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 22), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1640), - [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__type_declarator, 1, 0, 21), - [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 21), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 32), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 88), - [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 88), - [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 73), - [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 73), - [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 22), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1499), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 34), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 22), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 111), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 111), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 20), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(530), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 97), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 97), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 91), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 91), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 42), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 42), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 71), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 71), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 74), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 47), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 72), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 72), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 96), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 96), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 41), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 41), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 19), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 32), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 35), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 44), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 92), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 41), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 41), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 43), - [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), SHIFT_REPEAT(1276), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 65), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 49), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 49), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 100), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 3, 0, 100), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), SHIFT_REPEAT(1353), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 65), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 11), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 49), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 49), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 22), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 116), SHIFT_REPEAT(1425), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 116), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 121), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 32), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 85), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 126), SHIFT_REPEAT(1389), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 126), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 85), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 50), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 116), SHIFT_REPEAT(1421), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 116), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 106), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 117), - [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), - [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 106), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 120), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 117), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1644), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 127), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 120), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(443), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 129), SHIFT_REPEAT(1864), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 129), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 130), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 85), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 130), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), SHIFT_REPEAT(1148), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 65), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 98), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 122), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 125), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 85), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 17), + [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 42), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 17), + [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 42), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1754), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1234), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(912), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(415), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1407), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1869), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(576), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1851), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1922), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(424), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2020), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(864), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2028), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1955), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 9), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 9), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(416), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1768), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(487), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1859), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1970), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1792), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1901), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(562), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(565), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1876), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 9), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 9), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(29), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1758), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1922), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(414), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1955), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1860), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [1139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(364), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(465), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1807), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 28), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 28), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 91), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 91), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 66), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 66), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 77), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 77), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 49), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 49), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 8), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 82), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 82), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 86), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 86), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 29), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 29), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 92), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 92), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 77), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 77), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 101), + [1264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 101), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 113), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 113), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 29), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 29), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 30), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 30), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 32), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 32), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 36), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 36), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 49), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 49), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 8), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 57), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 57), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 64), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 64), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 42), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 42), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 2), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 2), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_errwarn, 2, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_errwarn, 2, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 4), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 16), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 17), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_errwarn, 3, 0, 18), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_errwarn, 3, 0, 18), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_embed, 3, 0, 16), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_embed, 3, 0, 16), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 17), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 19), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 19), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 24), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 24), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 34), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 34), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 40), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 40), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 41), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 41), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 42), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 42), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 43), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 17), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 63), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 63), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, 0, 68), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 69), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 69), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 72), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 72), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 73), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 73), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 74), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 95), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 95), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, 0, 96), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, 0, 96), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 98), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 98), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 2), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 39), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 39), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(816), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(361), + [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(558), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(558), + [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(513), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(164), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(535), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1764), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(24), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1781), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1793), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(556), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2028), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1812), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(370), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1969), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(471), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1975), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1955), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1860), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1814), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2058), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(562), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(565), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1857), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2031), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2036), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2048), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1876), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1471), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(699), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1717), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1590), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(699), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(692), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(822), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(251), + [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(29), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1756), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(576), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1851), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1758), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(395), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2030), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(486), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1878), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1886), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1877), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1769), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1922), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(827), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(102), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(34), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1765), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1789), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(612), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1840), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1768), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(396), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2068), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(487), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1858), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1859), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1970), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1792), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1901), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(817), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1759), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(610), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1854), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1760), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2052), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1807), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(819), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(193), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(38), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1788), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1798), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(613), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1823), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1790), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(364), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2071), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(465), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1844), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1845), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2001), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1801), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1893), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(732), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(535), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1880] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(973), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(321), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(830), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(356), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(615), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(615), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(616), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(508), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(617), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(618), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1857), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2031), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2036), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2048), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1876), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1471), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(699), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1717), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1590), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(699), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(692), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 42), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 17), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 42), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 17), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1917), + [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 0), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 106), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 0, 58), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 42), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 85), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 58), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1994), + [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), + [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(682), + [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(648), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(700), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1444), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1541), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 122), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 122), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 111), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 88), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 131), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 131), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 126), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 89), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 61), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 61), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 110), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 127), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 127), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 121), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 60), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 60), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 12), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 12), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 13), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 13), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(804), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(715), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1856), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 37), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 37), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 47), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 39), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 39), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_expression, 4, 0, 59), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_expression, 4, 0, 59), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(813), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(715), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1856), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 39), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 39), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 70), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 70), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 107), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 107), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_expression, 6, 0, 108), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_expression, 6, 0, 108), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 26), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 26), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 5), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 31), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 31), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 47), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 47), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 7), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 55), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 55), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 5), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 5), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 9), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 7), + [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), REDUCE(sym_auto_type, 1, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_auto_type, 1, 0, 0), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), REDUCE(sym_auto_type, 1, 0, 0), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_auto_type, 1, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 27), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 27), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 14), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 8), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 25), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 27), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 27), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(743), + [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 4, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 4, 0, 0), + [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 8), + [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 54), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 56), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 56), + [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 54), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 54), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 3), + [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 81), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 81), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 14), + [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1, 0, 0), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0), + [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 25), + [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 3), + [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 5, -1, 6), + [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 5, -1, 6), + [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 25), + [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 26), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 8), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, 0, 27), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, 0, 27), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 25), + [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 26), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 6, -1, 6), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 6, -1, 6), + [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, 0, 27), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, 0, 27), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, 0, 54), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, 0, 54), + [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 55), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 55), + [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 8), + [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 7), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, -1, 6), + [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, -1, 6), + [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, 0, 7), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, 0, 81), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, 0, 81), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 54), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, 0, 8), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 79), + [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 79), + [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, 0, 56), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, 0, 56), + [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 25), + [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 25), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 52), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 52), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 17), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 44), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 44), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 80), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 80), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 42), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 43), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 17), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 80), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 80), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 73), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 42), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 74), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 98), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 98), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 44), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 44), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 39), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 39), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(973), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 39), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 39), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym__old_style_parameter_list, 2, 0, 0), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 31), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 31), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 71), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 71), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 97), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1902), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 52), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 52), SHIFT(1902), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 8), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 8), SHIFT(1902), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 25), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 25), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 25), SHIFT(1902), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 79), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 79), + [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 79), SHIFT(1902), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1603), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(974), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3211] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(973), + [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4, 0, 0), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [3245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [3248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1028), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, 0, 35), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, 0, 35), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 78), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 78), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 13), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 46), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 103), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 104), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 0, 105), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 0, 118), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 83), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 0, 84), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 65), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 117), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 116), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1153), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1160), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(752), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1824), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 14), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 3), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 14), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 3), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1152), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1159), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(752), + [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1824), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 3), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 3), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 14), + [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 14), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 44), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 14), SHIFT(743), + [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 3), SHIFT(743), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 38), SHIFT(1157), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 15), SHIFT(1163), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 14), SHIFT(1150), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 39), SHIFT(1161), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), SHIFT(1162), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 38), SHIFT(743), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1151), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(743), + [3595] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(743), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 39), SHIFT(743), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 10), SHIFT(743), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 15), SHIFT(743), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), SHIFT(1697), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 31), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 31), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 5), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 0, 35), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 0, 35), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, 0, 35), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, 0, 35), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, 0, 35), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, 0, 35), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, 0, 35), + [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, 0, 35), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, 0, 35), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 42), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 17), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 112), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 112), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 33), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 33), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 62), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 62), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, 0, 23), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 1, 0, 23), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 23), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 23), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 114), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 114), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 23), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 23), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 93), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 93), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), REDUCE(aux_sym_function_declarator_repeat1, 1, 0, 0), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1, 0, 0), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 112), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 36), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 33), + [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 33), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 62), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 62), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 33), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 33), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1230), + [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2056), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 112), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 17), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 17), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 17), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [4065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 42), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 42), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 42), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 62), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 62), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 33), + [4085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 33), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 23), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 23), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 0), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(1902), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 33), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 33), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 0, 35), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 0, 35), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 114), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 114), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, 0, 35), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 4, 0, 35), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 93), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 93), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 23), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 23), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 23), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 23), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 53), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 53), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 114), + [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 114), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 93), + [4215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 93), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 23), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 23), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 62), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 62), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 23), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 23), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 33), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 33), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 35), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 35), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 22), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 22), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 23), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 23), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 114), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 114), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 93), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 99), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 99), + [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 21), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 21), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 23), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 23), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1938), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 35), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 35), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 75), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 36), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 98), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 98), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 43), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 44), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 33), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 17), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 17), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 76), + [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), + [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 73), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 42), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 42), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 94), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 20), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 74), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 45), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 48), + [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [4468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 67), SHIFT_REPEAT(1299), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 67), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 67), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 23), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 23), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 50), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 67), SHIFT_REPEAT(1372), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 67), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, 0, 67), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_declarator, 1, 0, 11), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 2, 0, 50), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, 0, 102), + [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_declarator, 3, 0, 102), + [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 33), + [4544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, 0, 33), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 87), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 120), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 109), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 87), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 51), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 119), SHIFT_REPEAT(1433), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 119), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 119), SHIFT_REPEAT(1432), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 119), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [4647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 124), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [4659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 109), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 129), SHIFT_REPEAT(1402), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 129), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 128), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 67), SHIFT_REPEAT(1187), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 67), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(967), [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 122), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4802] = {.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), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 112), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 50), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 71), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 71), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4947] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 72), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 41), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 42), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 42), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 71), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 72), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 71), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 96), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 96), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 42), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 96), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 72), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 42), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 72), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 71), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 96), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 96), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 72), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 42), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 123), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 120), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 130), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_type_specifier_repeat1, 2, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 132), SHIFT_REPEAT(1892), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 132), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 87), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 133), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 133), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(440), + [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 123), + [4866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2, 0, 0), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 87), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 125), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 100), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4981] = {.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), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 115), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 125), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 51), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 98), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 74), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 43), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 98), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 98), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 73), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 43), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 42), + [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 17), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 43), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 43), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 98), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 73), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 73), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 98), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 73), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 74), + [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 74), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 43), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5414] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 74), + [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 73), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 74), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), }; #ifdef __cplusplus